OBJECT

DeliveryNote

A DeliveryNote.

link GraphQL Schema definition

  • type DeliveryNote implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • documentRowId: UUID!
  • partnerCompanyRowId: UUID
  • partnerCompanyRowIdConfirmedBy: TrimmedText
  • partnerCompanyRowIdConfirmedAt: Datetime
  • partnerCompanyLocationRowId: UUID
  • partnerCompanyLocationRowIdConfirmedBy: TrimmedText
  • partnerCompanyLocationRowIdConfirmedAt: Datetime
  • noteNumber: TrimmedText
  • noteNumberConfirmedBy: TrimmedText
  • noteNumberConfirmedAt: Datetime
  • invoiceNumber: TrimmedText
  • invoiceNumberConfirmedBy: TrimmedText
  • invoiceNumberConfirmedAt: Datetime
  • issueDate: Date
  • issueDateConfirmedBy: TrimmedText
  • issueDateConfirmedAt: Datetime
  • deliveredAt: Datetime
  • deliveredAtConfirmedBy: TrimmedText
  • deliveredAtConfirmedAt: Datetime
  • netSum: Float
  • netSumConfirmedBy: String
  • netSumConfirmedAt: Datetime
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `Document` that is related to this `DeliveryNote`.
  • documentByDocumentRowId: Document!
  • # Reads a single `PartnerCompany` that is related to this `DeliveryNote`.
  • partnerCompanyByPartnerCompanyRowId: PartnerCompany
  • # Reads a single `CompanyLocation` that is related to this `DeliveryNote`.
  • companyLocationByPartnerCompanyLocationRowId: CompanyLocation
  • # Reads and enables pagination through a set of `DeliveryNoteItem`.
  • #
  • # 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.
  • # orderBy: The method to use when ordering `DeliveryNoteItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • deliveryNoteItemsByDeliveryNoteDocumentRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeliveryNoteItemsOrderBy!],
  • condition: DeliveryNoteItemCondition
  • ): DeliveryNoteItemsConnection!
  • # Reads and enables pagination through a set of `InvoiceDeliveryNote`.
  • #
  • # 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.
  • # orderBy: The method to use when ordering `InvoiceDeliveryNote`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoiceDeliveryNotesByDeliveryNoteDocumentRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceDeliveryNotesOrderBy!],
  • condition: InvoiceDeliveryNoteCondition
  • ): InvoiceDeliveryNotesConnection!
  • }