OBJECT
Collection
link GraphQL Schema definition
1 type Collection { 2 3 : ID!  4 5 : String!  6 7 #   A url to get the collection image 8 : String  9 10 #   A signed url to get the collection image. It will only be signed if it is an s3  11 #   url. 12 : String  13 14 : ID  15 16 : String  17 18 : Organization  19 20 : ID!  21 22 : Boolean  23 24 : DateTime  25 26 : DateTime  27 28 : Int  29 30 : Int  31 32 : ID  33 34 : Boolean  35 36 #   Folders that the colection is filed in. 37 #  38 # Arguments 39 #   offset: Provide an offset to skip to a certain element in the  40 #   result, for paging. 41 #   limit: Maximum number of results to retrieve in this query;  42 #   page size 43 (: Int, : Int, : ID): WidgetList  44 45 #   Get a list of mentions filed in the collection 46 #  47 # Arguments 48 #   offset: Provide an offset to skip to a certain element in the  49 #   result, for paging. 50 #   limit: Maximum number of results to retrieve in this query;  51 #   page size 52 (: Int, : Int, : ID): CollectionMentionList  53 54 #   Folders that the collection is filed in. 55 #   At present, a collection can only be filed in a single folder. 56 : [Folder!]  57 58 } 
link Required by
- CollectionList
- CollectionMention
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- Widget