Skip to Content

ProductTaxonomyAttribute

Describes a product taxonomy attribute, providing structured information about product classification and attributes used in product taxonomy systems.

Type Definition

type ProductTaxonomyAttribute { id: Int handle: String name: String translatedName: String type: String values: [ProductTaxonomyValue] }

Fields

FieldTypeDescription
idIntReturns the id.
handleStringReturns the handle.
nameStringReturns the name.
translatedNameStringReturns the translated name.
typeStringReturns the type.
values[ProductTaxonomyValue]Returns the values.

Relationships

ProductTaxonomyAttribute is used to define taxonomy-based product attributes and classifications. It contains a collection of ProductTaxonomyValue objects that represent the specific values associated with this attribute. This type is referenced by Filter and ProductOption objects to provide taxonomy attribute information in product filtering and option selection contexts.

Example

{ productTaxonomyAttribute { id handle name translatedName type values { id name } } }

Implements

This type does not implement any interfaces.