ProductTaxonomy
Describes a product taxonomy, providing structured categorization and attribute information for products.
Type Definition
type ProductTaxonomy {
category: ProductTaxonomyCategory
attributes: [ProductTaxonomyAttribute]
}Fields
| Field | Type | Description |
|---|---|---|
| category | ProductTaxonomyCategory | Returns the category. |
| attributes | [ProductTaxonomyAttribute] | Returns the attributes. |
Relationships
ProductTaxonomy is used by the Product type to provide taxonomy information. It contains a reference to a ProductTaxonomyCategory that describes the product’s category, and a list of ProductTaxonomyAttribute objects that define the product’s specific attributes within that taxonomy.
Example
{
category {
id
name
}
attributes {
id
name
value
}
}Implements
This type does not implement any interfaces.