> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/attributes/llms.txt)
> Source: https://docs.saleor.io/api-reference/attributes/mutations/attribute-value-bulk-delete

# attributeValueBulkDelete Mutation

Deletes values of attributes.

Requires one of the following permissions, depending on the type of each value's attribute: MANAGE\_PRODUCT\_TYPES\_AND\_ATTRIBUTES for \`PRODUCT\_TYPE\` attributes MANAGE\_PAGE\_TYPES\_AND\_ATTRIBUTES for \`PAGE\_TYPE\` attributes MANAGE\_CUSTOMER\_TYPES\_AND\_ATTRIBUTES for \`CUSTOMER\_TYPE\` attributes

Triggers the following webhook events:

-   ATTRIBUTE\_VALUE\_DELETED (async): An attribute value was deleted.
-   ATTRIBUTE\_UPDATED (async): An attribute was updated.

```graphql
attributeValueBulkDelete(
  ids: [ID!]!
): AttributeValueBulkDelete
```

Details

```graphql
type AttributeValueBulkDelete {
  count: Int!
  attributeErrors: [AttributeError!]! @deprecated
  errors: [AttributeError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="ids"></a>

#### [`ids`](#ids) ● [`[ID!]!`](/api-reference/miscellaneous/scalars/id.md)

List of attribute value IDs to delete.

<a id="type"></a>

### Type

<a id="attributevaluebulkdelete"></a>

#### [`AttributeValueBulkDelete`](/api-reference/attributes/objects/attribute-value-bulk-delete.md)

Deletes values of attributes.

Requires one of the following permissions, depending on the type of each value's attribute: MANAGE\_PRODUCT\_TYPES\_AND\_ATTRIBUTES for \`PRODUCT\_TYPE\` attributes MANAGE\_PAGE\_TYPES\_AND\_ATTRIBUTES for \`PAGE\_TYPE\` attributes MANAGE\_CUSTOMER\_TYPES\_AND\_ATTRIBUTES for \`CUSTOMER\_TYPE\` attributes

Triggers the following webhook events:

-   ATTRIBUTE\_VALUE\_DELETED (async): An attribute value was deleted.
-   ATTRIBUTE\_UPDATED (async): An attribute was updated.
