OBJECT

ProductPart

Describes a product contained by this product

link GraphQL Schema definition

  • type ProductPart {
  • # The contained product
  • contained: Product!
  • # The ID of the product contained
  • containedId: Int!
  • # The container product
  • container: Product!
  • # The ID of the container product
  • containerId: Int!
  • # The unique Consonance identifier
  • id: Int
  • # The quantity of the product contained
  • numberOfCopies: Int!
  • # The sequence number
  • sequenceNumber: Int
  • }