I am new with graphql.
Visited the site https://graphql.org/swapi-graphql/ and sent a simple query like so
query {
allPeople {
people{
name
birthYear
}
}
}
and got the response like
{
"data": {
"allPeople": {
"people": [
{
"name": "Luke Skywalker",
"birthYear": "19BBY"
},
{
"name": "C-3PO",
"birthYear": "112BBY"
}......so on
]
}
}
}
Now I have downloaded graphql desktop clients applications like insomnia and graphiql
I am trying to run the above same query with insomnia and graphiql desktop apps and so far could not succeed. With Insomnia I get
403 ERROR
The request could not be satisfied.
This distribution is not configured to allow the HTTP request method that was used for this request. The distribution supports only cachable requests.
Generated by cloudfront (CloudFront)
While with graphiql desktop app, there seems to be some similar error where the loader is running non stop.
So what am I missing, why is the desktop clients not able to connect to the start war api(https://graphql.org/swapi-graphql) while the google chrome browser is working property. Google chrome is also a client right?
Am I missing something when it comes to desktop app clients?