query GetProduct($productId: ID!) {
tenant {
product(productId: $productId) {
id
name
caption
description
active
options
}
}
}
{
"data": {
"tenant": {
"product": {
"active": true,
"caption": "Smart phone product by Apple",
"description": "Expensive but reliable phone that's mostly used for puppy filters.",
"id": "1",
"name": "iPhone",
"options": null
}
}
}
}