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!
- : UUID!
- : UUID
- : TrimmedText
- : Datetime
- : UUID
- : TrimmedText
- : Datetime
- : TrimmedText
- : TrimmedText
- : Datetime
- : TrimmedText
- : TrimmedText
- : Datetime
- : Date
- : TrimmedText
- : Datetime
- : Datetime
- : TrimmedText
- : Datetime
- : Float
- : String
- : Datetime
- : UpdatedTime
- : CreatedTime
- # Reads a single `Document` that is related to this `DeliveryNote`.
- : Document!
- # Reads a single `PartnerCompany` that is related to this `DeliveryNote`.
- : PartnerCompany
- # Reads a single `CompanyLocation` that is related to this `DeliveryNote`.
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DeliveryNoteItemsOrderBy!],
- : 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.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoiceDeliveryNotesOrderBy!],
- : InvoiceDeliveryNoteCondition
- ): InvoiceDeliveryNotesConnection!
- }
link Require by
- DeliveryNoteItemnull
- DeliveryNotesConnectionA connection to a list of `DeliveryNote` values.
- DeliveryNotesEdgeA `DeliveryNote` edge in the connection.
- DocumentA `Document` which can be any form of document (invoice, delivery note, statement, etc.).
- InvoiceDeliveryNotenull
- QueryThe root query type which gives access points into the data universe.