OrderFilter

(INPUT_OBJECT)

Advanced search of orders. Usage requires 'partner token'.

link GraphQL Schema definition

  • input OrderFilter {
  • # created from
  • pur_date_from: Date
  • # created until
  • pur_date_to: Date
  • # total <
  • sum_from: Float
  • # total >
  • sum_to: Float
  • # containing item with title
  • item_title: String
  • # containing count of items from
  • items_from: Float
  • # containing up to count of items
  • items_to: Float
  • # order number
  • order_num: String
  • # customer name and surname or company name
  • customer: String
  • # Address
  • address: String
  • # currency
  • currency: CurrencyCode
  • # order Status
  • status: Int
  • # internal Id
  • shipping: Int
  • # internal Id
  • payment: Int
  • # internal Id of language version
  • lang_id: Int
  • # internal Id of invoicing company
  • invoicer_id: Int
  • # full text search in EAN, Warehouse number and Import code
  • # EAN / Warehouse number / Import code
  • product_identificator: String
  • # order source
  • source: String
  • # internal note
  • internal_note: String
  • }

link Require by

  • Query Querying retrieves data (read access). Batching of multiple queries is not supported with this API. To modify data or perform operations @see Mutation defintion. As of GraphQL nature, for each query you need to specify fields returned. To make this simpler you may use predefined fragments of data (default datasets) which honor the _<ObjectName> convention. You may combine predefined fragments with specific field enumeration in your queries. @see fragments.graphql You may need to distinguish between cursors i.e. pageable lists of items (SomeobjectList objects) returned and simple sets of items (array of objects). General rule is that lists are used for 'content generated by public' and are retrieved by getObjectList queries, simple sets are used for 'items created/managed by administrator' and retrieved by listObjects calls. Please note for cursors you may not request more than 30 items at once (i.e. page size is limited to max. 30 items).