phong bat

This commit is contained in:
2024-10-17 15:15:08 +07:00
parent 59923b02cb
commit 5c56e79d63
19 changed files with 456 additions and 145 deletions

View File

@@ -21,8 +21,12 @@ export class WorkshopMeetingRoomSchema extends PothosSchema {
workshopMeetingRoom() {
return this.builder.prismaObject('WorkshopMeetingRoom', {
fields: (t) => ({
id: t.exposeID('id'),
workshopId: t.exposeID('workshopId'),
id: t.exposeID('id', {
description: 'The ID of the workshop meeting room.',
}),
workshopId: t.exposeID('workshopId', {
description: 'The ID of the workshop that the meeting room is for.',
}),
}),
});
}