AttributeCreateInput Input Type
Represents an input for create of attribute.
NOTE: Deprecated fields filterableInStorefront, storefrontSearchPosition and availableInGrid are not supported in bulk mutations: attributeBulkCreate, attributeBulkUpdate.
input AttributeCreateInput {
inputType: AttributeInputTypeEnum
entityType: AttributeEntityTypeEnum
name: String!
slug: String
type: AttributeTypeEnum!
unit: MeasurementUnitsEnum
values: [AttributeValueCreateInput!]
valueRequired: Boolean
isVariantOnly: Boolean
visibleInStorefront: Boolean
filterableInStorefront: Boolean @deprecated
filterableInDashboard: Boolean
storefrontSearchPosition: Int @deprecated
availableInGrid: Boolean @deprecated
externalReference: String
referenceTypes: [ID!]
}
Fields
AttributeCreateInput.inputType ● AttributeInputTypeEnum enum attributes
The input type to use for entering attribute values in the dashboard.
AttributeCreateInput.entityType ● AttributeEntityTypeEnum enum attributes
The entity type which can be used as a reference.
AttributeCreateInput.name ● String! non-null scalar miscellaneous
Name of an attribute displayed in the interface.
AttributeCreateInput.slug ● String scalar miscellaneous
Internal representation of an attribute name.
AttributeCreateInput.type ● AttributeTypeEnum! non-null enum attributes
The attribute type.
AttributeCreateInput.unit ● MeasurementUnitsEnum enum miscellaneous
The unit of attribute values.
AttributeCreateInput.values ● [AttributeValueCreateInput!] list input attributes
List of attribute's values.
AttributeCreateInput.valueRequired ● Boolean scalar miscellaneous
Whether the attribute requires values to be passed or not.
AttributeCreateInput.isVariantOnly ● Boolean scalar miscellaneous
Whether the attribute is for variants only.
AttributeCreateInput.visibleInStorefront ● Boolean scalar miscellaneous
Whether the attribute should be visible or not in storefront.
AttributeCreateInput.filterableInStorefront ● Boolean deprecated scalar miscellaneous
No longer supported
Whether the attribute can be filtered in storefront.
AttributeCreateInput.filterableInDashboard ● Boolean scalar miscellaneous
Whether the attribute can be filtered in dashboard.
AttributeCreateInput.storefrontSearchPosition ● Int deprecated scalar miscellaneous
No longer supported
The position of the attribute in the storefront navigation (0 by default).
AttributeCreateInput.availableInGrid ● Boolean deprecated scalar miscellaneous
No longer supported
Whether the attribute can be displayed in the admin product list.
AttributeCreateInput.externalReference ● String scalar miscellaneous
External ID of this attribute.
AttributeCreateInput.referenceTypes ● [ID!] list scalar miscellaneous
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.22Member Of
attributeBulkCreate mutation ● attributeCreate mutation