Queries

GraphQL Queries

This section documents all available queries in the pyck GraphQL API. Queries allow you to fetch data from the system without making any changes.

Available Queries

Pagination and Filtering

Most list queries support pagination using the Relay connection specification. This allows you to efficiently navigate large result sets.

Example of paginated query:

Common Query Parameters

Many queries support similar parameters:

  • where: Filter criteria specific to the queried entity

  • orderBy: Sorting criteria for the results

  • Pagination parameters: first, after, last, before

Last updated

Was this helpful?