OBJECT

Quantity

Fields that specify one of the quantity records on a production run

link GraphQL Schema definition

  • type Quantity {
  • # Free text, to specify supplier, destination and delivery information
  • description: String
  • # The unique Consonance identifier
  • id: Int
  • # e.g. Advances, Warehouse, Author copies
  • name: String
  • # The product ordered on this production run in this quantity
  • product: Product
  • # The ID of the product ordered
  • productId: Int
  • # The unique #Consonance identifier for the production run
  • productionRunId: ProductionRun!
  • # The number of copies on the order
  • quantity: Int!
  • # The number of copies actually received from the order supplier
  • receivedQuantity: Int
  • }