OBJECT

OrderAttachment

Attachment on an order.

link GraphQL Schema definition

  • type OrderAttachment {
  • # Unique ID
  • id: Int!
  • # The order the attachment is linked to.
  • order: Order
  • # The path of the attachment
  • attachment_path: String!
  • # The download URL for the attachment
  • attachment_url: String!
  • # The display name for the attachment
  • name: String
  • # The size of the attachment (in MBs)
  • size: String
  • # The time the attachment was created.
  • created_time: DateTime!
  • }