← Back to private beta table of contents.
Pagination
Limit-based pagination
For simple queries, you can use basic limit-based pagination.Cursor-based pagination
The API also supports cursor-based pagination with Connection fields. All paginated queries use the pattern nodeTypesConnection:Implementation
Pagination with filtering
You can combine pagination with filtering for more targeted queries:For very large datasets, consider using smaller page sizes (25-50 items) to optimize performance and avoid timeouts. The client side can use retry logic that automatically reduces page size exponentially on server errors (e.g., from 50 to 10 to 2 items) to handle resource constraints gracefully.
Best practices
- Use Pagination: Always implement proper pagination for large result sets
- Limit Field Selection: Only request fields you need to minimize response size
- Implement Retry Logic: Handle rate limits and server errors gracefully
- Cache Results: Cache frequently accessed data to reduce API calls
- Monitor Usage: Track your API usage to stay within rate limits
Limitations
Early access scope
This API is being provided for early testing and feedback purposes only. It is subject to change or deprecation without long-term support guarantees. We recommend using this version solely for development and experimentation, and not for production systems or any critical use.No uptime guarantee
This version of the API does not include an uptime guarantee or formal SLA. Interruptions or outages may occur as development continues. It should not be used in contexts that require high availability or reliability.No query response time guarantee
We do not guarantee response times for this version of the API. Performance may vary depending on factors such as query complexity, system load, and infrastructure conditions.No limit on query complexity
There are currently no enforced limits on query complexity, depth, or size. While this offers flexibility for testing, overly complex queries may impact performance or cause timeouts.Rate Limiting
Rate limiting is applied to this API to help ensure system stability. Please plan your usage accordingly. Limits may be adjusted based on system performance and usage patterns.Endpoint URL may change
The endpoint URL for this API version will change upon production deployment.Support availability
We will do our best to address issues reported during this period, but please note that there is no formal service level agreement (SLA) associated with this version of the API.← Back to private beta table of contents.