INPUT_OBJECT

FactoryInput

Fields of a factory which can be passed to mutations.

link GraphQL Schema definition

  • input FactoryInput {
  • # 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
  • # Label, e.g. name, of the factory.
  • label: String
  • # Language code of the label following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
  • labelLanguageCode: String
  • # Description of the factory
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
  • descriptionLanguageCode: String
  • # Location of the factory
  • location: LocationInput
  • # Arbitrary properties of the factory
  • properties: [PropertyInput]
  • # Products assigned to the factory or as an output product of a process of the
  • # factory enterprise
  • products: [ProductInput]
  • # Machines located in the factory
  • machines: [MachineInput]
  • # Human resources available in the factory (especially the ones with special
  • # expertise)
  • humanResources: [HumanResourceInput]
  • # Processes assigned to the factory or as realization of a capability a production
  • # resource of the factory provides
  • processes: [ProcessInput]
  • # Certificates of the factory
  • certificates: [PropertyInput]
  • }