INPUT_OBJECT
FormFieldInput
Input type for a form field
link GraphQL Schema definition
- input FormFieldInput {
- # Unique identifier of the field
- : String!
- # Field type
- : FormFieldTypeEnum!
- # Localized label (locale => text)
- : Json
- # Localized placeholder (locale => text)
- : Json
- # Localized helper (locale => text)
- : Json
- # Localized content (locale => text)
- : Json
- # Whether the field is required
- : Boolean
- # Default value
- : String
- # Field width (percentage, e.g. "100", "50")
- : String
- # Choice options — list of localized maps (select, multiselect, radio, checkbox
- # only)
- : Json
- # Minimum value (number field only)
- : Int
- # Maximum value (number field only)
- : Int
- # Step increment (number field only)
- : Int
- # Allow decimal values (number field only)
- : Boolean
- }