INPUT_OBJECT

MultiviewContentAttributeParams

Contains all information to create a new content attribute.

link GraphQL Schema definition

1input MultiviewContentAttributeParams {
4
2# Optional list of child content attribute ids.
3childIDs: [ID!]
7
5# Unique identifier.
6id: ID
10
8# Optional an URL to the icon of this content attribute.
9imageURL: String
13
11# Indicates the type of the attribute.
12key: String!
16
14# Human-readable name of the attribute.
15name: String!
19
17# The channel that the content attribute is created under.
18ownerChannelID: ID
22
20# Optional pointer to a parent content attribute instance.
21parentID: ID
25
23# Optional pointer to a parent content attribute key.
24parentKey: String
28
26# value of the attribute.
27value: String!
31
29# Optional abbreviation of value.
30valueShortName: String
32}