Enhance CollaborationSessionSchema by adding collaboratorsIds field to expose a list of collaborator IDs. This update improves the schema's clarity and functionality for collaboration management.

This commit is contained in:
2024-11-28 19:47:13 +07:00
parent f2edc9fa8d
commit e546c348cc

View File

@@ -30,6 +30,9 @@ export class CollaborationSessionSchema extends PothosSchema {
chatRoom: t.relation('chatRoom', {
description: 'The chat room.',
}),
collaboratorsIds: t.exposeStringList('collaboratorsIds', {
description: 'The IDs of the collaborators.',
}),
meetingRoom: t.relation('meetingRoom', {
description: 'The meeting room.',
}),