Scalar Types
Enums
ComponentType
SavedSearchType
SortOrder
Input Types
Filter Operators
String and array filtering:Sort Criteria
Content Filter
Asset Filter
Pagination
All list queries use cursor-based pagination for efficient traversal of large datasets:Cursor-Based Pagination
Unlike page-based pagination, cursor-based pagination uses an opaque cursor token to track position:- cursor: Pass this value to the next query to continue pagination.
nullwhen no more results. - hasMore:
trueif additional results exist beyond the current page. - limit: The number of items requested (and returned, unless fewer remain).