OBJECT

DeliveryNotesConnection

A connection to a list of DeliveryNote values.

link GraphQL Schema definition

  • type DeliveryNotesConnection {
  • # A list of `DeliveryNote` objects.
  • nodes: [DeliveryNote]!
  • # A list of edges which contains the `DeliveryNote` and cursor to aid in
  • # pagination.
  • edges: [DeliveryNotesEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `DeliveryNote` you could get from the connection.
  • totalCount: Int
  • }