2.1.0

Features

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

query {
  product(id: "8S-DEMO-Polohemd-1") {
    customSets(first: 5) {
      edges {
        node {
          id
          title
          description
          images {
            edges {
              node {
                url
              }
            }
          }
          products {
            id
            similarProducts(first: 2) {
              edges {
                node {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}

Last updated