INPUT_OBJECT

UpdateDataInput

link GraphQL Schema definition

  • input UpdateDataInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # For dependent dropdowns, the parent-field values this option is available for,
  • # as a JSON array of identifiers (option ids or enum names). Empty when always
  • # available.
  • allowedBy: JSONString
  • # Numeric value associated with the option, used in calculation formulas (e.g.
  • # score of a dropdown option).
  • calcValue: Float
  • # Name of the entity and its default text representation.
  • optionName: String
  • # Position of the option within its data set; lower values appear first.
  • sortOrder: Int
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Map of locale codes to translated option names (e.g. {"en-US": "Hot", "de-DE":
  • # "Heiß"}). Empty when no translations are defined.
  • optionNameTranslations: JSONString
  • }

link Require by