# ProductTaxonomyCategory A product taxonomy category, such as a Google product category. ## Type Definition ```graphql type ProductTaxonomyCategory { id: Int name: String fullName: String translatedName: String translatedFullName: String googleProductCategory: String shopifyProductCategory: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | id | Int | Returns the id. | | name | String | Returns the name. | | fullName | String | Returns the full name. | | translatedName | String | Returns the translated name. | | translatedFullName | String | Returns the translated full name. | | googleProductCategory | String | Returns the Google product category. | | shopifyProductCategory | String | Returns the Shopify Standard Product Taxonomy category id. | ## Relationships This type is used by `ProductTaxonomy.category` and represents a structured taxonomy category that can be associated with products in the system. It provides multiple representations of the same category across different taxonomy systems and languages. ## Example ```graphql query { productTaxonomyCategory { id name fullName translatedName translatedFullName googleProductCategory shopifyProductCategory } } ``` ## Implements This type does not implement any interfaces. ## Related Types - ProductTaxonomy