OBJECT

ProductionRun

A production run, which is usually a print run of physical books but may be the creation of physical or digital audio or electronic books. Not part of the ONIX standard.

link GraphQL Schema definition

  • type ProductionRun {
  • # The IDs of bindings linked to this production run
  • bindings: [Binding!]!
  • # The IDs of covers linked to this production run
  • covers: [Cover!]!
  • # The date the printer has been asked to deliver the stock
  • deliveryDate: ISO8601Date
  • # The IDs of embellishments linked to this production run
  • embellishments: [Embellishment!]!
  • # The IDs of finishes linked to this production run
  • finishes: [Finish!]!
  • # The unique Consonance identifier
  • id: Int
  • # The IDs of interiors linked to this production run
  • interiors: [Interior!]!
  • # An optional name for the production run to disambiguate it from others, such as
  • # reprints
  • name: String
  • # The IDs of products linked to this production run
  • productIds: [Int!]!
  • # The IDs of quantity records linked to this production run
  • quantities: [Quantity!]!
  • # The work object
  • work: Work!
  • # The unique #Consonance identifier for the work
  • workId: Work! @deprecated( reason: "Use `work` instead. This will be redefined in future to return an integer " )
  • }