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}

link Required by