graphql
Run a query or mutation
Run a query or mutation as a system user that bypasses authentication and data access rules. You can access metadata about your API, including its schema, with an introspection query.
post/groups/{groupId}/apps/{appId}/graphql
Request body
Example request
{
"query": "query AllTasks { tasks(query: { status: $status }) { _id owner } }",
"variables": "{ \"status\": \"complete\" }",
"operationName": "AllTasks"
}Response
OK