Schema Documentation
RootQueryToOrderConnectionWhereArgs
Description
Arguments for filtering the RootQueryToOrderConnection connection
Fields
Input Field | Description |
---|---|
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
{"customerId":987,"customersIn":[123],"dateQuery":DateQueryInput,"exclude":[987],"include":[987],"orderby":[OrdersOrderbyInput],"parent":987,"parentIn":[123],"parentNotIn":[123],"productId":123,"search":"abc123","statuses":["CANCELLED"]}