update admin note
This commit is contained in:
@@ -42,15 +42,33 @@ export class AdminNoteSchema extends PothosSchema {
|
||||
type: 'DateTime',
|
||||
description: 'The date and time the admin note was last updated.',
|
||||
}),
|
||||
centerId: t.exposeString('centerId', {
|
||||
description:
|
||||
'The ID of the center the admin note is associated with.',
|
||||
}),
|
||||
serviceId: t.exposeString('serviceId', {
|
||||
description:
|
||||
'The ID of the service the admin note is associated with.',
|
||||
}),
|
||||
mentorId: t.exposeString('mentorId', {
|
||||
description:
|
||||
'The ID of the mentor the admin note is associated with.',
|
||||
}),
|
||||
resumeId: t.exposeString('resumeId', {
|
||||
description:
|
||||
'The ID of the resume the admin note is associated with.',
|
||||
}),
|
||||
mentor: t.relation('mentor', {
|
||||
description: 'The mentor the admin note is associated with.',
|
||||
}),
|
||||
center: t.relation('center', {
|
||||
description: 'The center the admin note is associated with.',
|
||||
}),
|
||||
service: t.relation('service', {
|
||||
description: 'The service the admin note is associated with.',
|
||||
}),
|
||||
serviceId: t.exposeString('serviceId', {
|
||||
description:
|
||||
'The ID of the service the admin note is associated with.',
|
||||
resume: t.relation('resume', {
|
||||
description: 'The resume the admin note is associated with.',
|
||||
}),
|
||||
}),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user