OBJECT

Interior

Fields that specify one of the interiors on a production run

link GraphQL Schema definition

  • type Interior {
  • # Whether the stock is certified by the Forestry Stewardship Council or not
  • fsc: Boolean
  • # 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 binding
  • productIds: [Int!]
  • # The unique #Consonance identifier for the production run
  • productionRunId: ProductionRun!
  • # The products on this production run that have this binding
  • products: [Product!]
  • # The shorthand code used to describe the colours used on the interior 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.
  • textColour: String
  • # A free text description of the colours used on the interior e.g. 4/4 with 3mm
  • # bleeds
  • textColourDescription: String
  • # Free text to describe any aspects of the interior without discrete fields. Can
  • # be used to provide printer instructions.
  • textPrintInstructions: String
  • }