INPUT_OBJECT

CategoryUpdateInput

link GraphQL Schema definition

1input CategoryUpdateInput {
2
3name: String
4
5status: Status
6
7uri: String
8
9metaTitle: String
10
11metaDescription: String
12
13metaKeywords: String
14
15parentCategory: CategoryInput
16
17# Choose a sibling category to move current one before it.
18# Pass null as ID to move it at the end.
19beforeCategory: CategoryInput
20
21# Defines how to sort displays in this category
22displaySortType: CategorySortTypeInput
23
24# Required permission: Category.attributes:write
25assignMappedAttributes: [MappedAttributeAssignInput!]
26
27# Required permission: Category.attributes:write
28unassignMappedAttributes: [MappedAttributeUnassignInput!]
29
30# Required permission: Category.attributes:write
31assignDynamicAttributes: [DynamicAttributeAssignInput!]
32
33# Required permission: Category.attributes:write
34unassignDynamicAttributes: [DynamicAttributeUnassignInput!]
35}

link Required by