merge change from db
This commit is contained in:
@@ -22,9 +22,15 @@ export class ServiceMeetingRoomSchema extends PothosSchema {
|
||||
return this.builder.prismaObject('ServiceMeetingRoom', {
|
||||
description: 'A service meeting room in the system.',
|
||||
fields: (t) => ({
|
||||
id: t.exposeID('id'),
|
||||
chattingRoomId: t.exposeString('chattingRoomId'),
|
||||
chattingRoom: t.relation('chattingRoom'),
|
||||
id: t.exposeID('id', {
|
||||
description: 'The ID of the service meeting room.',
|
||||
}),
|
||||
chattingRoomId: t.exposeString('chattingRoomId', {
|
||||
description: 'The ID of the chatting room.',
|
||||
}),
|
||||
chattingRoom: t.relation('chattingRoom', {
|
||||
description: 'The chatting room.',
|
||||
}),
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user