> For the complete documentation index, see [llms.txt](https://docs.8select.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.8select.io/api/changelog/2.1.0.md).

# 2.1.0

## Features

You can now query more than 1 custom-set via the `product.customSets` query and the `first` parameter.

<pre class="language-graphql" data-expandable="true"><code class="lang-graphql">query {
  product(id: "8S-DEMO-Polohemd-1") {
<a data-footnote-ref href="#user-content-fn-1">    customSets(first: 5) {</a>
      edges {
        node {
          id
          title
          description
          images {
            edges {
              node {
                url
              }
            }
          }
          products {
            id
            similarProducts(first: 2) {
              edges {
                node {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
</code></pre>

[^1]: this will return the first 5 sets
