INPUT_OBJECT
CreateDraftFieldInput
link GraphQL Schema definition
- input CreateDraftFieldInput {
- # 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
- # Related entity name for field (e.g. Account, Contact, Lead, Opportunity, ...)
- : String!
- # User friendly name for field.
- : String!
- # Type of the field. Supported field types are: checkbox, currency,
- # currency_foreign, date, datetime, dropdown, email, float, input, integer,
- # multiselect_checkbox, phone, radio, sequence, text_area, url
- : String!
- # Optional custom data set id can be set.
- : ID
- # 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
- # If true, then there will be an API validation if value of entity is unique.
- : Boolean
- # For dropdown, radio, and multiselect-checkbox fields, the set of available
- # options. Empty for other field types.
- : [FieldDataSetItem!]
- # Set at field creation to also create this field on another (related) entity,
- # identified by its entity api name — used to share/map the field across entities.
- # Write-only on create.
- : String
- # Lookup field definition.
- : LookupPropertyParams
- # Deprecated - previously returned sequence pattern used for sequence type of
- # field.
- : String
- # 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
- }