INPUT_OBJECT
CategoryCreateInput
link GraphQL Schema definition
1 input CategoryCreateInput { 2 3 : String! 4 5 : Status! 6 7 : StoreInput! 8 9 : String 10 11 : String 12 13 : String 14 15 : String 16 17 : 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 20 : CategoryInput 21 22 # Defines how to sort displays in this category 23 : CategorySortTypeInput 24 25 # Required permission: Category.attributes:write 26 : [MappedAttributeAssignInput!] 27 28 # Required permission: Category.attributes:write 29 : [DynamicAttributeAssignInput!] 30 }