2.1.0
Last updated
Was this helpful?
You can now query more than 1 custom-set via the product.customSets query and the first parameter.
Last updated
Was this helpful?
Was this helpful?
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
}
}
}
}
}
}
}
}
}