OBJECT

SupplyChain

A supply chain container, consisting of supply chain elements to represent the whole supply chain.

link GraphQL Schema definition

  • type SupplyChain {
  • # 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 supply chain.
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • descriptionLanguageCode: String
  • # The direct suppliers as first level elements of the supply chain.
  • suppliers: [SupplyChainElement!]!
  • }