INPUT_OBJECT

SupplyChainElementInput

Fields of a supply chain element which can be passed to mutations.

link GraphQL Schema definition

  • input SupplyChainElementInput {
  • # 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
  • # Description containing information about the supplier.
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • descriptionLanguageCode: String
  • # Supplier company.
  • enterprise: EnterpriseInput
  • factory: FactoryInput
  • # List of products (as product applications) the supplier provides within this
  • # supply chain element.
  • products: [ProductApplicationInput]
  • # Tier 1 suppliers of the supply chain element's enterprise.
  • suppliers: [SupplyChainElementInput]
  • }