Skip to Content

ProductTaxonomyValue

A value for a product taxonomy attribute, including name, handle, and color.

Type Definition

type ProductTaxonomyValue { id: Int handle: String name: String translatedName: String isTransparent: Boolean isMulticolor: Boolean color: Color color2: Color color3: Color colors: [Color] isStandard: Boolean }

Fields

FieldTypeDescription
idIntReturns the id.
handleStringReturns the handle.
nameStringReturns the name.
translatedNameStringReturns the translated name.
isTransparentBooleanReturns true if the color is considered transparent, i.e. clear.
isMulticolorBooleanReturns true if the color is multicolor.
colorColorReturns the color if any.
color2ColorReturns the second color if any.
color3ColorReturns the third color if any.
colors[Color]Returns the colors.
isStandardBooleanReturns true if the value is standard.

Relationships

ProductTaxonomyValue represents a structured taxonomy value for product attributes. It is used by FilterValue and ProductOptionValue objects to provide detailed attribute information including color variations and standardization status.

Example

{ id handle name translatedName isTransparent isMulticolor color { id name } colors { id name } isStandard }

Implements

None