EntitiesOptionMutationsCopy PageSee the Queries page for a presentation of this resource. CreateOption Create an option Parameters input OptionInput Data of the option Example GraphQLmutation { CreateOption( input: { label: "Material" } ) { id } } Returned data JSON{ "data": { "CreateOption": { "id": 101122 } } } UpdateOption Update an option Parameters id ID Id of the option input OptionInput Data of the option Example GraphQLmutation UpdateOption($id: ID!, $input: OptionInput!) { UpdateOption(id: $id, input: $input) { id label } } Variables (JSON){ "id": 100001, "input": { "label": "Size" } } Returned data JSON{ "data": { "UpdateOption": { "id": 100001, "label": "Sizes" } } } DeleteOption Delete an option Parameters id ID Id of the option Example GraphQLmutation DeleteOption($id: ID!) { DeleteOption(id: $id) } Variables (JSON){ "id": 100009 } Returned data JSON{ "data": { "DeleteOption": true } } OptionInput data type id ID Unique identifier of the option label String Title of the option OptionCreateInput data type id ID Unique identifier of the option label String Title of the optionUpdated 19 days ago QueriesOrderDid this page help you?YesNo