INPUT_OBJECT

CreateDataInput

link GraphQL Schema definition

  • input CreateDataInput {
  • # 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
  • # 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
  • # Identifier of the data set this option belongs to. Shared by all options of a
  • # dropdown / radio / multiselect field.
  • dataSetId: ID!
  • # 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!
  • # True when the entity configuration is published; false while it exists only as
  • # an unpublished draft.
  • isPublished: Boolean
  • # 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