OBJECT

SharedCollection

link GraphQL Schema definition

1type SharedCollection {
2
3name: String
4
5description: String
6
7image: String
8
9# A signed url to get the collection image. It will only be signed if it is an s3
10# url.
11signedImageUrl: String
12
13createdDateTime: DateTime
14
15modifiedDateTime: DateTime
16
17folderId: ID
18
19folderTypeId: ID
20
21organizationId: ID
22
23programCount: Int
24
25shareInfo: Share
26
27itemCount: Int
28
29# Arguments
30# offset: Provide an offset to skip to a certain element in the
31# result, for paging.
32# limit: Specify maximum number of results to retrieve in this
33# result. Page size.
34mentions(offset: Int, limit: Int): SharedMentionList
35
36}