OBJECT

EntryProduct

link GraphQL Schema definition

  • type EntryProduct {
  • # A product record
  • product: Product
  • # The quantity of a product. Required for entry.
  • quantity: Int
  • # The total value listed of the product. Required for entry.
  • value: Money
  • # Line items associated with the shipment product. NOTE: These lines are persisted
  • # on a shipment record, even if the associated product record is updated.
  • lines: [EntryLine!]
  • }