I am trying to use Postman to test queries on v2.0.0-alpha. I cannot find any examples using the JSON body with the “query” key. Documentation says “query”: “string”. I have tried the following as the JSON body:
But get the following response:
{
“code”: “invalid”,
“message”: “failed to execute query against proxy service”,
“op”: “http/handlePostQuery”,
“error”: {
“code”: “invalid”,
“message”: “compilation failed: loc 1:6-1:27: invalid expression @1:27-1:28: '”
}
}
I am getting the following error response:
{
“code”: “invalid”,
“message”: “failed to decode request body”,
“op”: “http/handlePostQuery”,
“error”: “invalid character ‘r’ in literal false (expecting ‘a’)”
}
I am not sure which character ‘r’ is causing the issue?