INPUT_OBJECT
UpdateDraftFieldInput
link GraphQL Schema definition
- input UpdateDraftFieldInput {
- # 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
- # Unique identifier of entity.
- : ID
- # True when the field is marked as deleted (soft-delete).
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User friendly name for field.
- : String
- # When true, the field name is treated as a translation key and resolved through
- # the translation system; otherwise the literal name is shown.
- : Int
- # For dependent dropdown/radio fields, id of the parent field whose selected value
- # restricts the options shown on this field.
- : ID
- # Calculated formula used for fields which supports calculation.
- : String
- # A default value for field.
- : String
- # If this field is allowed in global search.
- : Boolean
- # For dropdown, radio, and multiselect-checkbox fields, the set of available
- # options. Empty for other field types.
- : [FieldDataSetItem!]
- # Lookup field definition.
- : LookupPropertyParams
- # Sequence field definition.
- : SequencePropertyParams
- # Rollup field definition.
- : RollupPropertyParams
- # Available option values for dropdown, radio, and multiselect-checkbox fields,
- # including labels and translations. Empty for other field types.
- : FieldOptionsPropertyJSONString
- # AI Smart Field options. Available for input, text_area, integer, float, email,
- # phone, url, currency.
- : FieldAiOptionsParams
- # Advanced calculated formula
- : AdvancedFormulaPropertyParams
- # Per-user-role access overrides for this field. Empty when the field uses default
- # access (full access for all roles).
- : [FieldPermissionNoFieldBackrefInput!]
- # Map of locale codes to translated field names (e.g. {"en-US": "First name",
- # "de-DE": "Vorname"}). Empty when no translations are defined.
- : JSONString
- }