OBJECT

DeliveryNote

link GraphQL Schema definition

  • type DeliveryNote {
  • documentId: UUID
  • partnerCompanyId: UUID
  • invoiceId: UUID
  • invoiceNumber: String
  • deliveryNoteNr: String
  • deliveryDate: Datetime
  • # get company of partner
  • companyByPartnerCompanyId: Company
  • # get corresponding delivery note items
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • deliveryNoteItemsByDocumentId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor
  • ): DeliveryNoteItemsConnection!
  • # get corresponding document
  • documentByDocumentId: Document
  • }