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