GraphQL API
Nexaa’s public GraphQL API gives you control over your Serverless Containers and Cloud Databases. You can perform CRUD operations on resources such as containers and container jobs — all through a modern, flexible interface.
Endpoint: https://graphql.tilaa.com/graphql/platform
Include a valid authorization token and a GraphQL query or mutation in each request.
Getting Started
All GraphQL requests require Bearer Authentication.
Do not use your main Nexaa account credentials.
Instead, create an API user with a unique email address.
The email address must be:
- Unique and verified
- Able to receive important updates (deprecation notices, feature releases, maintenance alerts)
Try It Out
Danger
All operations are executed against the live environment. Changes are actually applied.
You can explore test and use the API using our interactive GraphQL:
This tool lets you:
- Browse the full schema
- Build and run queries
- View live responses
Queries and Mutations
GraphQL supports two main operation types:
Query
Retrieves data from the server. The response includes only the requested fields.
Mutation
Modifies data (create, update, delete) and returns the updated results.
Responses
Success – Query
Failure – Query Success – MutationFailure – Mutation
You can view all required and optional fields directly in the API schema explorer.