OBJECT

Widget

link GraphQL Schema definition

1type Widget {
2
3id: ID
4
5name: String
6
7organization: Organization
8
9organizationId: ID
10
11collection: Collection
12
13# A limited view of the collection metadata backing the widget
14collectionJSON: JSONData
15
16collectionId: ID!
17
18displayCollectionName: Boolean
19
20displayCollectionDescription: Boolean
21
22displayTranscription: Boolean
23
24displayMentionDescription: Boolean
25
26displayMentionIntro: Boolean
27
28displayLogo: Boolean
29
30width: Int
31
32numberOfMentionsToShow: Int
33
34adScript: String
35
36seoTags: [String]
37
38backgroundColor: String
39
40borderColor: String
41
42textColor: String
43
44nextButtonColor: String
45
46createdDateTime: 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.
53mentions(offset: Int, limit: Int): SharedMentionList
54
55}