InvoiceFilter

(INPUT_OBJECT)

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

link GraphQL Schema definition

  • input InvoiceFilter {
  • # purchased from
  • buy_date_from: Date
  • # purchased until
  • buy_date_to: Date
  • # due from
  • due_date_from: Date
  • # due until
  • due_date_to: Date
  • # paid from
  • pay_date_from: Date
  • # paid to
  • pay_date_to: Date
  • # total <
  • sum_from: Float
  • # total >
  • sum_to: Float
  • # preinvoiced from
  • pre_inv_date_from: Date
  • # preinvoiced until
  • pre_inv_date_to: Date
  • # finalized from
  • inv_date_from: Date
  • # finalized until
  • inv_date_to: Date
  • # overdue
  • over_due: Boolean
  • # invoice number
  • inv_num: String
  • # preinvoice number
  • pre_inv_num: String
  • # customer name and surname or company name
  • customer: String
  • # address full text search
  • address: String
  • # currency
  • currency: CurrencyCode
  • # original order status internal Id
  • status: Int
  • # internal Id
  • shipping: Int
  • # language version internal Id
  • lang_id: Int
  • # internal Id of invoicing company
  • invoicer: String
  • # original order number
  • order_num: 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).