Skip to main content

AttributeValueCreate Object

Creates a value for an attribute.

Requires one of the following permissions, depending on the attribute type: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES for `PRODUCT_TYPE` attributesMANAGE_PAGE_TYPES_AND_ATTRIBUTES for `PAGE_TYPE` attributesMANAGE_CUSTOMER_TYPES_AND_ATTRIBUTES for `CUSTOMER_TYPE` attributes

Triggers the following webhook events:

  • ATTRIBUTE_VALUE_CREATED (async): An attribute value was created.
  • ATTRIBUTE_UPDATED (async): An attribute was updated.
type AttributeValueCreate {
attribute: Attribute
attributeErrors: [AttributeError!]! @deprecated
errors: [AttributeError!]!
attributeValue: AttributeValue
}

Fields

attribute ● Attribute

The updated attribute.

errors ● [AttributeError!]!

attributeValue ● AttributeValue

Show deprecatedHide deprecated

attributeErrors ● [AttributeError!]!

DEPRECATED

Use errors field instead.

Returned By

attributeValueCreate mutation