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

link Require by