OBJECT

InvoiceDeliveryNote

link GraphQL Schema definition

  • type InvoiceDeliveryNote implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • invoiceDocumentRowId: UUID!
  • deliveryNoteDocumentRowId: UUID!
  • createdBy: UUID!
  • createdAt: Datetime!
  • # Reads a single `Invoice` that is related to this `InvoiceDeliveryNote`.
  • invoiceByInvoiceDocumentRowId: Invoice!
  • # Reads a single `DeliveryNote` that is related to this `InvoiceDeliveryNote`.
  • deliveryNoteByDeliveryNoteDocumentRowId: DeliveryNote!
  • }