OBJECT Funnel
Funil de upsell e cross-sell com ofertas sequenciais pós-checkout.
Campos
| Campo | Tipo | Descrição |
| id | ID! | ID global Relay do funil. |
| offers | [Offer!]! | Lista de ofertas do funil em ordem sequencial. |
Offer
| Campo | Tipo | Descrição |
| id | ID! | ID global Relay da oferta. |
| type | String! | Tipo da oferta (ex: "upsell", "downsell"). |
| discount | Float! | Percentual de desconto da oferta. |
| product | Product | Produto oferecido. |
Query
query GetFunnels($hostname: String!) {
client(hostname: $hostname) {
funnels {
id
offers {
id
type
discount
product {
id
title
price
images { url }
}
}
}
}
}
Resposta
{
"data": {
"client": {
"funnels": [
{
"id": "RnVubmVsOmFiYzE=",
"offers": [
{
"id": "T2ZmZXI6YWJjMQ==",
"type": "upsell",
"discount": 15.0,
"product": {
"id": "UHJvZHVjdDpkZWYy",
"title": "Kit Camisetas (3 unidades)",
"price": 14990,
"images": [{ "url": "https://..." }]
}
}
]
}
]
}
}
}