INPUT_OBJECT

CategoryCreateInput

link GraphQL Schema definition

1input CategoryCreateInput {
2
3name: String!
4
5status: Status!
6
7store: StoreInput!
8
9uri: String
10
11metaTitle: String
12
13metaDescription: String
14
15metaKeywords: String
16
17parentCategory: CategoryInput
18
19# Choose a category of the same level and with the same parent to put this one at specific place among the others
20beforeCategory: CategoryInput
21
22# Defines how to sort displays in this category
23displaySortType: CategorySortTypeInput
24}

link Required by