> ## Documentation Index
> Fetch the complete documentation index at: https://docs-test.rye.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ShopifyProductShopifyCategories

> Represents a product category for a Shopify item. These categories can change over time.

## Fields

<ParamField path="id" type={<>ID!</>} required>
  A unique identifier for the category associated with the Shopify product.
</ParamField>

<ParamField path="name" type={<>String!</>} required>
  The name of the category, which provides information about the product's classification.
</ParamField>

## Related types

* [`ShopifyProduct`](/api-reference/shopifyproduct)

## Sample response

```json theme={null}
{
  "shopifyCategories": [
      {
          "id": "gid://shopify/TaxonomyCategory/sg",
          "name": "Sporting Goods"
      },
      {
          "id": "gid://shopify/TaxonomyCategory/sg-4",
          "name": "Outdoor Recreation"
      },
      {
          "id": "gid://shopify/TaxonomyCategory/sg-4-16",
          "name": "Skateboarding"
      },
      {
          "id": "gid://shopify/TaxonomyCategory/sg-4-16-1",
          "name": "Complete Skateboards"
      },
      {
          "id": "gid://shopify/TaxonomyCategory/sg-4-16-1-3",
          "name": "Longboards"
      }
  ]
}
```
