> ## 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.

# ShopifyCollection

> Represents collection from the Shopify stores. It includes details such as the collection's title, description and products in the collection.

## Fields

<ParamField path="id" type={<>ID!</>} required>
  A unique Shopify Product ID, usually an integer.
</ParamField>

<ParamField path="title" type={<>String!</>} required>
  The title of the product.
</ParamField>

<ParamField path="description" type={<>String!</>} required>
  The description of the product scraped and extracted from the HTML of the product page.
</ParamField>

<br />

`productsConnection( before: ID after: ID first: Int last: Int )`: [`ShopifyProductsConnection`](/api-reference/shopifyProductConnection)

A connection to fetch product data. It accepts the arguments before, after, first, and last for pagination purposes and returns a [`ShopifyProductsConnection`](/api-reference/shopifyProductConnection) object.
