INPUT_OBJECT

ProductApplicationInput

Fields of a product application (Product metadata container) which can be passed to mutations.

link GraphQL Schema definition

  • input ProductApplicationInput {
  • # 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: ProductInput
  • # A property describing the quantity of the product used in the product
  • # application, e.g. as input for a process
  • quantity: PropertyInput
  • # Properties belonging to the product application (not properties of the product
  • # independent of its application)
  • properties: [PropertyInput]
  • }