OBJECT

SupplyChainElement

Supplier within a certain supply chain. Multiple factories of one company have to be divided into multiple supply chain elements.

link GraphQL Schema definition

  • type SupplyChainElement {
  • # 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
  • # List of products (as product applications) the supplier provides within this
  • # supply chain element.
  • products: [ProductApplication]
  • # Supplier company.
  • enterprise: Enterprise
  • # Supplier factory involved.
  • factory: Factory!
  • # Tier 1 suppliers of the supply chain element's enterprise.
  • suppliers: [SupplyChainElement]
  • }