GraphQL Proxy
curl --request POST \
--url https://developer.world.org/api/v1/graphql \
--header 'Content-Type: application/json' \
--data '
{
"query": "query MyApps { app { id name } }"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'query MyApps { app { id name } }'})
};
fetch('https://developer.world.org/api/v1/graphql', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}Developer Portal
GraphQL Proxy
Proxy endpoint for Developer Portal GraphQL queries and mutations. Supports user JWTs and API keys. The example query requires authentication; an unauthenticated request returns HTTP 200 with a GraphQL validation-failed error (field 'app' not found in type: 'query_root'), not a 401.
POST
/
api
/
v1
/
graphql
GraphQL Proxy
curl --request POST \
--url https://developer.world.org/api/v1/graphql \
--header 'Content-Type: application/json' \
--data '
{
"query": "query MyApps { app { id name } }"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'query MyApps { app { id name } }'})
};
fetch('https://developer.world.org/api/v1/graphql', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}Was this page helpful?