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).
- : String
- # Last modification time.
- : DateTime
- # Creation time.
- : 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.
- : JSONString
- # Numeric value associated with the option, used in calculation formulas (e.g.
- # score of a dropdown option).
- : Float
- # Identifier of the data set this option belongs to. Shared by all options of a
- # dropdown / radio / multiselect field.
- : ID!
- # Name of the entity and its default text representation.
- : String!
- # Position of the option within its data set; lower values appear first.
- : Int!
- # True when the entity configuration is published; false while it exists only as
- # an unpublished draft.
- : Boolean
- # Revision when entity was lastly changed.
- : Int
- # Map of locale codes to translated option names (e.g. {"en-US": "Hot", "de-DE":
- # "Heiß"}). Empty when no translations are defined.
- : JSONString
- }