guest book added

This commit is contained in:
2025-06-26 12:37:34 -04:00
parent 6aceafeb67
commit 29c91fee7f
17 changed files with 622 additions and 4 deletions

View File

@@ -27,5 +27,14 @@ export const queries = {
}
})
return event
}
},
async fetchGuestBookEntries() {
return await prisma.guestBookEntry.findMany({
orderBy: [
{ lName: 'asc' },
{ fName: 'asc' }
],
})
},
}