OBJECT
FormFieldDefinition
link GraphQL Schema definition
- type FormFieldDefinition {
- # Field type identifier (e.g. "text", "email")
- : String!
- # Font Awesome icon class (e.g. "fa-font")
- : String!
- # Field group — base, choice, complex
- : String!
- # Translated label for the field type
- : String!
- # Field is unique
- : Boolean!
- # Field is required
- : Boolean!
- # List of editable properties for this field type (label, placeholder, helper,
- # required, options)
- : [String!]!
- # Default values (as translation keys) for pre-filling certain properties when
- # creating a field of this type
- : AssociativeArray!
- }