8.SET (simplified)
Fetch cross selling products for a given product identifier. The response is already curated into readily usable product sets.
Last updated
Was this helpful?
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.
We heard your feedback and combined 8.SET and 8.SET Custom into one query that already creates useable product sets. 🎉Your feedback is always welcome and helpful! ❤️
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!
query {
product(id: "8S-DEMO-Polohemd-1") {
productSets {
edges {
node {
id
tags
imageLink
products {
id
}
}
}
}
}
}Last updated
Was this helpful?
Was this helpful?
{
"data": {
"product": {
"productSets": {
"edges": [
{
"node": {
"id": "e3bcaf66-5037-4d7b-be4a-8c571a6fb299",
"tags": ["everyday"],
"imageLink": "https://thumbnails.8scdn.io/9056af8c-e9b8-50db-bdf1-f794dc2e10d7.jpg",
"products": [
{
"id": "8S-DEMO-Jacket-1"
},
{
"id": "8S-DEMO-Polohemd-1"
},
{
"id": "8S-DEMO-Gürtel-1"
},
{
"id": "8S-DEMO-Hose-1"
},
{
"id": "8S-DEMO-Schuhe-1"
}
]
}
},
{
"node": {
"id": "e3bcaf66-5037-4d7b-be4a-8c571a6fb299#generated#1",
"tags": [],
"imageLink": null,
"products": [
{
"id": "8S-DEMO-Jacket-2"
},
{
"id": "8S-DEMO-Polohemd-2"
},
{
"id": "8S-DEMO-Gürtel-2"
},
{
"id": "8S-DEMO-Hose-2"
},
{
"id": "8S-DEMO-Schuhe-2"
}
]
}
}
]
}
}
}
}