GraphQL API
GraphQL API guide for the 01 SOFTWARE platform
GraphQL API
01 SOFTWARE provides a GraphQL API for flexible data querying.
GraphQL Endpoint
https://api.01.software/api/graphqlAuthentication
HTTP Header
POST /api/graphql
Authorization: Bearer your_jwt_token_here
Content-Type: application/jsonGraphQL vs REST
| Feature | GraphQL | REST |
|---|---|---|
| Requests | Single endpoint | Multiple endpoints |
| Data | Select only needed fields | Fixed response |
| Relations | Fetch in one request | Multiple requests needed |
| Types | Strong type system | Documentation dependent |
| Caching | Complex | Leverages HTTP cache |