100.
Only supports API key authentication.path filterOrdersFilterInputpath paginationCursorPaginationInputpath OrdersConnectionOrdersConnectionOrdersConnection object, which includes a list of orders matching the specified criteria along with pagination information.123456789{ "filter": { "createdBefore" : "2025-06-20T21:24:00.000Z", "createdAfter" : "2025-05-10T21:24:00.000Z" }, "pagination": { "first": 2 } }
123456789101112131415161718query OrdersByQuery($pagination: CursorPaginationInput!, $filter: OrdersFilterInput!) { ordersByQuery(pagination: $pagination, filter: $filter) { edges { cursor node { id createdAt status } }, pageInfo { hasNextPage hasPreviousPage startCursor endCursor } } }
123456789101112131415161718192021222324252627282930313233343536{ "data": { "ordersByQuery": { "edges": [ { "cursor": "75417c9f-b679-4579-b4d2-f83ad7ea3c27", "node": { "id": "75417c9f-b679-4579-b4d2-f83ad7ea3c27", "createdAt": "2025-06-06T17:08:49.906Z", "status": "CANCELLED" } }, { "cursor": "c5afed4b-d9c8-48e6-8e98-0de065ae6f9e", "node": { "id": "c5afed4b-d9c8-48e6-8e98-0de065ae6f9e", "createdAt": "2025-06-05T19:36:04.033Z", "status": "SUCCEEDED" } } ], "pageInfo": { "hasNextPage": true, "hasPreviousPage": false, "startCursor": "75417c9f-b679-4579-b4d2-f83ad7ea3c27", "endCursor": "c5afed4b-d9c8-48e6-8e98-0de065ae6f9e" } } }, "extensions": { "cost": { "queryCost": 12, "queryCostLimit": 750 } } }