OBJECT

Finish

Fields that specify one of the finishes on a production run

link GraphQL Schema definition

  • type Finish {
  • # A free text field to provide a full description of the finish
  • description: String
  • # The unique Consonance identifier
  • id: Int
  • # The name of the finish e.g. spot UV, embossed, debossed
  • name: String
  • # The IDs of products on this production run that have this finish
  • productIds: [Int!]
  • # The unique #Consonance identifier for the production run
  • productionRunId: ProductionRun!
  • # The products on this production run that have this finish
  • products: [Product!]
  • }