List goods out pick lists
Goods Out: Pick Lists
List goods out pick lists
Retrieve pick lists using GraphQL. Supports filtering by reference, status, account, warehouse, and pick type.
POST
List goods out pick lists
Query Structure
Filter Argument
All filters are passed inside thefilter argument. Each filter field accepts an input object with operators:
Available Filters
| Filter | Input Type | Operators | Description |
|---|---|---|---|
pick_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of pick tasks |
completed_pick_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of completed pick tasks |
loading_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of loading tasks |
completed_loading_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of completed loading tasks |
dispatch_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of dispatch tasks |
completed_dispatch_tasks_count | IntegerInputType | eq, gt, gteq, lt, lteq, between | Number of completed dispatch tasks |
Filter Operators
| Input Type | Operators |
|---|---|
| StringInputType | eq (exact), ilike (case-insensitive partial), like (case-sensitive partial), in (array match), between (range) |
| IntegerInputType | eq, gt, gteq, lt, lteq, between |
| DatetimeInputType | eq, from, to, between |
| BooleanInputType | eq (required) |
| IdInputType | eq, gt, gteq, lt, lteq, in, filled |
Authorizations
OAuth 2.0 authentication. Use the client credentials or authorization code flow to obtain an access token.
The subdomain/tenant name identifying which tenant's data to access. Required for all API requests.
Body
application/json
GraphQL query string
Example:
"query($filter: GoodsOutPickListsFilterType) { goods_out_pick_lists { all(filter: $filter) { edges { node { id reference pick_reference pick_type load_reference goods_out_status { code name } account { id code } warehouse { id code } } } } } }"
Query variables including the filter object
Example:
{
"filter": { "pick_tasks_count": { "gteq": 1 } }
}
