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! :
- # Arbitrary id defined by the user, e.g. to identify the object in an application.
- ID :
- # Description containing information about the supplier.
- String :
- # Language code of the description following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- String :
- # List of products (as product applications) the supplier provides within this
- # supply chain element.
- ProductApplication] : [
- # Supplier company.
- Enterprise :
- # Supplier factory involved.
- Factory! :
- # Tier 1 suppliers of the supply chain element's enterprise.
- SupplyChainElement] : [
- }