The request payload of when using POST method passes variables as JSON string rather than object.
Expected
{
"query": "mutation UpsertCustomer...",
"variables": {
"homepolish_id": 421,
"input":{ "age": 36 }
},
"operationName":"UpsertCustomer"
}
Actual
{
"query": "mutation UpsertCustomer...",
"variables": "{"homepolish_id": 421, "input": {"age": 36}}",
"operationName": "UpsertCustomer"
}
The request payload of when using POST method passes variables as JSON string rather than object.
Expected
Actual