merge change from db

This commit is contained in:
2024-10-25 14:49:16 +07:00
parent 2872ac69ef
commit 7e25e8d96b
26 changed files with 147 additions and 94 deletions

View File

@@ -58,17 +58,14 @@ export class ServiceSchema extends PothosSchema {
}),
status: t.expose('status', {
type: ServiceStatus,
nullable: true,
description: 'The status of the service.',
}),
createdAt: t.expose('createdAt', {
type: 'DateTime',
nullable: true,
description: 'The date and time the service was created.',
}),
updatedAt: t.expose('updatedAt', {
type: 'DateTime',
nullable: true,
description: 'The date and time the service was updated.',
}),
feedbacks: t.relation('feedbacks', {
@@ -86,9 +83,6 @@ export class ServiceSchema extends PothosSchema {
milestone: t.relation('milestone', {
description: 'The milestone for the service.',
}),
schedule: t.relation('schedule', {
description: 'The schedule for the service.',
}),
serviceAndCategory: t.relation('serviceAndCategory', {
description: 'The service and category for the service.',
}),