# ProductTaxonomyCategory Describes a product taxonomy category with mappings to standardized product classification systems. ## Type Definition ```graphql type ProductTaxonomyCategory { googleProductCategory: String shopifyProductCategory: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | googleProductCategory | String | Returns the Google product category. | | shopifyProductCategory | String | Returns the Shopify Standard Product Taxonomy category id. | ## Relationships `ProductTaxonomyCategory` is used by the `ProductTaxonomy` type as its `category` field, providing taxonomy classification data for products. ## Example ```graphql { productTaxonomy { category { googleProductCategory shopifyProductCategory } } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [ProductTaxonomy](/docs/types/product-taxonomy)