database bi kiet pha banh roi

This commit is contained in:
2024-11-25 14:17:32 +07:00
parent 9515a3d9b3
commit 28d0374435
6 changed files with 55 additions and 60 deletions

View File

@@ -146,6 +146,20 @@ export class ScheduleSchema extends PothosSchema {
orderId: t.exposeID('orderId', {
nullable: true,
}),
participantIds: t.exposeStringList('participantIds', {
nullable: false,
}),
maxParticipants: t.exposeInt('maxParticipants', {
nullable: false,
}),
lateStart: t.expose('lateStart', {
type: 'DateTime',
nullable: true,
}),
collaborationSession: t.relation('CollaborationSession', {
description: 'The collaboration session of the schedule date.',
nullable: true,
}),
schedule: t.relation('schedule', {
description: 'The schedule the schedule date belongs to.',
}),