OBJECT

ProductApplication

A container for product usage metadata, like quantity. This is important to model input and output products of processes.

link GraphQL Schema definition

  • type ProductApplication {
  • # Unique knowledge base identifier (automatically generated)
  • id: ID!
  • # Arbitrary id defined by the user, e.g. to identify the object in an application
  • sourceId: ID
  • # Product the application is defined for
  • product: Product!
  • # A property describing the quantity of the product used in the product
  • # application, e.g. as input for a process
  • quantity: Property
  • # Properties belonging to the product application (not properties of the product
  • # independent of its application)
  • properties: [Property]
  • }