8.SET (simplified)

Fetch cross selling products for a given product identifier. The response is already curated into readily usable product sets.

Revised version of getting cross selling products.

circle-check
circle-info

The product sets do not have any title or description anymore but may have tags.

Also a product set will have either one or no image instead of a list of images.

We also work on automatically generating images for any product set, so you can present your products in the most optional way!

GraphQL Query

query {
  product(id: "8S-DEMO-Polohemd-1") {
    productSets {
      edges {
        node {
          id
          tags
          imageLink
          products {
            id            
          }
        }
      }
    }
  }
}

GraphQL Response

Last updated

Was this helpful?