refactor schema to match database schema

This commit is contained in:
2024-10-27 13:12:24 +07:00
parent 8d46676a37
commit 9e0e97a560
14 changed files with 73 additions and 63 deletions

View File

@@ -76,7 +76,7 @@ export class WorkshopSchema extends PothosSchema {
staff: t.relation('staff', {
description: 'The staff member who is leading the workshop.',
}),
meetingRoom: t.relation('WorkshopMeetingRoom', {
meetingRoom: t.relation('workshopMeetingRoom', {
nullable: true,
description: 'The meeting room that the workshop is for.',
}),