Picking Orders
pickingOrders Query
Arguments
Name
Type
Description
Return Type
Notes
Usage Example
query {
pickingOrders(
first: 10,
orderBy: { direction: DESC, field: CREATED_AT },
where: {
customerID: "550e8400-e29b-41d4-a716-446655440000"
}
) {
edges {
node {
id
customerID
data
orderitems {
sku
quantity
item {
data
}
}
attachments {
id
filename
}
createdAt
}
cursor
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}Last updated
Was this helpful?
