INPUT_OBJECT

PropertyInput

Fields of a property which can be passed to mutations.

link GraphQL Schema definition

  • input PropertyInput {
  • # 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 of the property.
  • label: String
  • # Language code of the label following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • labelLanguageCode: String
  • # Description of the property.
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • descriptionLanguageCode: String
  • # References to semantics describing the property.
  • semanticReferences: [SemanticReferenceInput]
  • # The actual value of the property, if one exists.
  • value: String
  • }