OBJECT

Investigation

Problematic shipment's investigation

link GraphQL Schema definition

  • type Investigation {
  • # Origin of the shipment
  • country: String!
  • # Timestamp of the investigation's creation
  • createdAt: ISO8601DateTime!
  • # Email of the user who made the booking.
  • email: String
  • # Uuid of the investigation
  • id: String
  • # Status of progress but from another angle
  • open: Boolean!
  • # Unique identifier within the shop ERP system of the shipment.
  • orderNumber: String
  • # Status of progress
  • resolved: Boolean!
  • # Uuid of the shipment
  • shipmentId: String
  • # Status of the shipment
  • status: String
  • }