OBJECT

Cover

Fields that specify one of the covers on a production run

link GraphQL Schema definition

  • type Cover {
  • # The shorthand code used to describe the colours used on the cover e.g. 4/4 to
  • # indicate that four colours, usually CMYK, are printed on both the front and the
  • # back of the paper stock; 4/0 to indicate CMYK printed one side.
  • coverColoursOutside: String
  • # A free text description of the colours used on the cover e.g. 4/4 with spot
  • # Pantone colour PMS Violet on no more than 20% of the cover
  • coverColoursOutsideDescription: String
  • # Free text to describe any aspects of the cover without discrete fields. Can be
  • # used to provide printer instructions.
  • coverNotes: String
  • # A description of the cover e.g. jacket, case-bound, printed paper case, softback
  • coverType: String
  • # The unique Consonance identifier
  • id: Int
  • # The name of the paper stock
  • paper: String
  • # The IDs of products on this production run that have this cover
  • productIds: [Int!]
  • # The unique #Consonance identifier for the production run
  • productionRunId: ProductionRun!
  • # The products on this production run that have this cover
  • products: [Product!]
  • }