Order

(OBJECT)

Order

link GraphQL Schema definition

  • type Order {
  • # system's internal ID
  • id: ID!
  • # order's evidence number
  • order_num: String!
  • # date and time of receiving the order
  • pur_date: DateTime!
  • # variable symbol (payment reference)
  • var_symb: Int
  • # Source of the order (eshop, e-mail, phone etc.). Might contain also custom
  • # values.
  • source: String
  • # flag that the order is awaiting administrator's intervention or review
  • blocked: Boolean!
  • # customer's note for the order
  • note: String
  • # internal note to order (not visible to customer)
  • internal_note: String
  • customer: Customer
  • # reference to person/account creating the order - @see OrderCreator for details
  • creator: OrderCreator
  • # invoice address
  • invoice_address: AddressData!
  • # delivery address if specified or pickup point's address if applicable
  • delivery_address: AddressData
  • # shipment reports
  • shipments: [ShipmentInfo!]
  • # ordered items (products)
  • items: [OrderItem]!
  • # non-product elements and fees
  • price_elements: [OrderPriceElement]!
  • # total order price - may be net or incl. tax
  • # . This object may contain net price for tax-exempted orders. @see
  • # href="price.doc.html" class="doclink">Price for further reference.
  • sum: Price!
  • # current order status
  • status: OrderStatus
  • # assigned sales representative
  • salesrep: Person
  • # set of preinvoices (payment requests) related to this order
  • preinvoices: [Preinvoice]
  • # set of invoices (final documents) related to this order
  • invoices: [Invoice]
  • # VAT summary - contains multiple taxation objects corresponding to specific tax
  • # rates contained within the order
  • vat_summary: [Taxation!]
  • # order language
  • language: LanguageVersion!
  • # date of last change
  • last_change: DateTime!
  • oss: Boolean
  • oss_country: CountryCodeAlpha2
  • }

link Require by