📄️ Using the REST APIs
Riseact provides a set of REST APIs that allow developers to interact with Riseact resources. These APIs are available to all developers who have created an application on Riseact.
📄️ Using the GraphQL APIs
Riseact provides a set of GraphQL APIs that allow developers to interact with Riseact resources. These APIs are available to all developers who have created an application on Riseact.
📄️ Explore the GraphQL graph
Apollo Sandbox lets you explore Riseact's GraphQL schema interactively: browse types and fields, compose queries and mutations, and test calls in real time.
📄️ GraphQL pagination
Riseact's GraphQL queries that return lists use cursor-based pagination. This approach is stable against items being inserted or removed while navigating, unlike offset pagination.
📄️ REST pagination
Riseact's REST APIs use offset-based pagination via the limit and offset parameters. This is Django Ninja's standard behavior.
📄️ GraphQL error handling
Riseact's GraphQL API uses two distinct mechanisms to communicate errors, depending on the context in which they occur.