INPUT_OBJECT

EnterpriseInput

Fields of an enterprise which can be passed to mutations.

link GraphQL Schema definition

  • input EnterpriseInput {
  • # 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 enterprise.
  • label: String
  • # Language code of the label following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
  • labelLanguageCode: String
  • # Description of the enterprise
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
  • descriptionLanguageCode: String
  • # Location of the enterprise
  • location: LocationInput
  • # Factories of the enterprise
  • factories: [FactoryInput]
  • # Subsidiary enterprises of the enterprise
  • subsidiaryEnterprises: [EnterpriseInput]
  • # Arbitrary properties of the enterprise
  • properties: [PropertyInput]
  • # Products assigned directly to the enterprise or to a factory of the enterprise
  • # or as an output product of a process of the enterprise
  • products: [ProductInput]
  • # Certificates of the enterprise
  • certificates: [PropertyInput]
  • # Logo of the enterprise
  • logo: String
  • }