OBJECT

CollectionMention

link GraphQL Schema definition

1type CollectionMention {
2
3# id of the collection
4folderId: ID!
5
6# id of the mention
7mentionId: ID!
8
9organizationId: ID!
10
11mention: Mention!
12
13collection: Collection!
14
15description: String
16
17createdDateTime: DateTime
18
19modifiedDateTime: DateTime
20
21}