Skip to main content

AttributeUpdateInput Input Type

Represents an input for update of attribute.

NOTE: Deprecated fields filterableInStorefront, storefrontSearchPosition and availableInGrid are not supported in bulk mutations: attributeBulkCreate, attributeBulkUpdate.

input AttributeUpdateInput {
name: String
slug: String
unit: MeasurementUnitsEnum
removeValues: [ID!]
addValues: [AttributeValueUpdateInput!]
valueRequired: Boolean
isVariantOnly: Boolean
visibleInStorefront: Boolean
filterableInStorefront: Boolean @deprecated
filterableInDashboard: Boolean
storefrontSearchPosition: Int @deprecated
availableInGrid: Boolean @deprecated
externalReference: String
referenceTypes: [ID!]
}

Fields

name ● String

Name of an attribute displayed in the interface.

slug ● String

Internal representation of an attribute name.

unit ● MeasurementUnitsEnum

The unit of attribute values.

removeValues ● [ID!]

IDs of values to be removed from this attribute.

addValues ● [AttributeValueUpdateInput!]

New values to be created for this attribute.

valueRequired ● Boolean

Whether the attribute requires values to be passed or not.

isVariantOnly ● Boolean

Whether the attribute is for variants only.

visibleInStorefront ● Boolean

Whether the attribute should be visible or not in storefront.

filterableInDashboard ● Boolean

Whether the attribute can be filtered in dashboard.

externalReference ● String

External ID of this product.

referenceTypes ● [ID!]

Specifies reference types to narrow down the choices of reference objects. Applicable only for REFERENCE and SINGLE_REFERENCE attributes with PRODUCT, PRODUCT_VARIANT and PAGE entity types. Accepts ProductType IDs for PRODUCT and PRODUCT_VARIANT entity types, and PageType IDs for PAGE entity type. If omitted, all objects of the selected entity type are available as attribute values.

A maximum of 100 reference types can be specified.

Added in Saleor 3.22
Show deprecated

Member Of

AttributeBulkUpdateInput input ● attributeUpdate mutation