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
- : String
- # The unique Consonance identifier
- : Int
- # The name of the finish e.g. spot UV, embossed, debossed
- : String
- # The IDs of products on this production run that have this finish
- : [Int!]
- # The unique #Consonance identifier for the production run
- : ProductionRun!
- # The products on this production run that have this finish
- : [Product!]
- }