Deletes values of attributes.
ids
List of attribute value IDs to delete.
Returns AttributeValueBulkDelete .
mutation ($ids: [ID!]!) { attributeValueBulkDelete(ids: $ids) { count productErrors { field message code attributes } } }
3
{ "ids": [ "aWRzOjI1" ] }
{ "attributeValueBulkDelete": { "count": 42, "productErrors": [ { "field": "string", "message": "string", "code": "ALREADY_EXISTS", "attributes": [ "YXR0cmlidXRlczo3MQ==" ] } ] } }