Schema Documentation
RootQueryToOrderConnectionWhereArgs
Description
Arguments for filtering the RootQueryToOrderConnection connection
Fields
Input Field | Description |
---|---|
billingEmail - String | Limit result set to orders assigned a specific billing email. |
customerId - Int | Limit result set to orders assigned a specific customer. |
customersIn - [Int] | Limit result set to orders assigned a specific group of customers. |
dateQuery - DateQueryInput | Filter the connection based on dates. |
exclude - [Int] | Ensure result set excludes specific IDs. |
include - [Int] | Limit result set to specific ids. |
orderby - [OrdersOrderbyInput] | What paramater to use to order the objects by. |
parent - Int | Use ID to return only children. Use 0 to return only top-level items. |
parentIn - [Int] | Specify objects whose parent is in an array. |
parentNotIn - [Int] | Specify objects whose parent is not in an array. |
productId - Int | Limit result set to orders assigned a specific product. |
search - String | Limit results to those matching a string. |
statuses - [OrderStatusEnum] | Limit result set to orders assigned a specific status. |
Example
{"billingEmail":"abc123","customerId":123,"customersIn":[987],"dateQuery":DateQueryInput,"exclude":[123],"include":[987],"orderby":[OrdersOrderbyInput],"parent":123,"parentIn":[123],"parentNotIn":[987],"productId":987,"search":"xyz789","statuses":["CANCELLED"]}