OBJECT

Embellishment

Fields that specify one of the embellishments on a production run

link GraphQL Schema definition

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