OBJECT

Note

A remark or reminder created by a user in a given pickup.

link GraphQL Schema definition

  • type Note {
  • # The user who created the note.
  • author: User!
  • # Creation time.
  • createdAt: ISO8601DateTime
  • # Unique identifier of the note.
  • id: String!
  • # The user who last modified the pickup
  • lastContributor: User!
  • # Actual message written by the user.
  • message: String!
  • # The shipment on which the note was written.
  • shipment: Shipment!
  • }