OBJECT
Widget
link GraphQL Schema definition
1 type Widget { 2 3 : ID 4 5 : String 6 7 : Organization 8 9 : ID 10 11 : Collection 12 13 # A limited view of the collection metadata backing the widget 14 : JSONData 15 16 : ID! 17 18 : Boolean 19 20 : Boolean 21 22 : Boolean 23 24 : Boolean 25 26 : Boolean 27 28 : Boolean 29 30 : Int 31 32 : Int 33 34 : String 35 36 : [String] 37 38 : String 39 40 : String 41 42 : String 43 44 : String 45 46 : DateTime 47 48 # Arguments 49 # offset: Provide an offset to skip to a certain element in the 50 # result, for paging. 51 # limit: Specify maximum number of results to retrieve in this 52 # result. Page size. 53 (: Int, : Int): SharedMentionList 54 55 }
link Required by
- 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.
- WidgetList