INPUT_OBJECT

MachineInput

Fields of a machine which can be passed to mutations.

link GraphQL Schema definition

  • input MachineInput {
  • # 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 naming the machine, e.g. a machine identifier.
  • label: String
  • # Language code of the label following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • labelLanguageCode: String
  • # Description of the machine.
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • descriptionLanguageCode: String
  • # Processes added as realization of a capability the production resource provides.
  • providedProcesses: [ProcessInput]
  • # Processes using the production resource.
  • usingProcesses: [ProcessInput]
  • # Capabilities the production resource provides.
  • providedCapabilities: [CapabilityInput]
  • # --------------------------------------
  • #
  • # Arbitrary machine properties like dimensions or standardized identifiers.
  • machineProperties: [PropertyInput]
  • }