GraphQL Schema
Endpoints
- GraphQL endpoint:
https://api.cloud.luxonis.com/graphql - Control-plane authentication:
Authorization: Bearer <your_api_key> - Introspection access: available without authentication
- Public integration root:
team { ... }
Public integration boundary
team { ... } surface and use the official guides and reference pages together with schema inspection.Live introspection
Http
1https://api.cloud.luxonis.com/graphqlInspect in a GraphQL client
- endpoint:
https://api.cloud.luxonis.com/graphql - best for: checking field names, input object shapes, and enum values before you wire a query or mutation
Minimal introspection request
Command Line
1curl -X POST https://api.cloud.luxonis.com/graphql \
2 -H "Content-Type: application/json" \
3 -d '{"query":"{ __schema { queryType { name } mutationType { name } } }"}'Tooling recipes
Generate typed clients from your checked-in operations
Yaml
1schema: https://api.cloud.luxonis.com/graphql
2documents: ./src/**/*.graphql- define the queries and mutations your integration needs
- generate types against the current schema
- treat generation errors as a signal that the operation or schema contract changed
Choose the inspection path that matches the job
- Use live introspection when you need to inspect one field, argument, or input shape quickly.
- Use Queries and Mutations when you already know the kind of operation you are looking for.