OBJECT

MultiviewContentAttribute

Multi-view content attribute(s) are used to augment the multi-view experience. they are used for filterings and groupings of chanlets to help viewers find content that they are interested in.

link GraphQL Schema definition

1type MultiviewContentAttribute {
2
3# childIDs is an optional list of child content attribute ids.
4childIDs: [ID!]
5
6# Time when this content attribute is created.
7createdAt: Time
8
9# id is a unique identifier generated on the server side.
10id: ID!
11
12# URL to the image (icon) of the content attribute.
13imageURL: String
14
15# key is a grouping identifier for content attributes of the same type.
16key: String!
17
18# name is a human-readable string of the content attribute type.
19name: String!
20
21# ownerChannel is the channel that this content attribute is created under.
22ownerChannel: Channel
23
24# parentID is an optional pointer to specify the parent attribute.
25parentID: ID
26
27# parentKey is an optional pointer to specifiy the key of the parent attribute.
28parentKey: String
29
30# Time when this content attribute is last modified.
31updatedAt: Time
32
33# value is the human-readble value of the attribute value.
34value: String!
35
36# valueShortName is an optional abbreviation of value.
37valueShortName: String
38
39}