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