verbb / formie

The most user-friendly forms plugin for Craft CMS.
Other
93 stars 69 forks source link

Add disabled state to GraphQL [FieldInterface] #1869

Closed jan-thoma closed 1 month ago

jan-thoma commented 1 month ago

What are you trying to do?

Make it possible to query the deactivated Status on GraphQL Requests.

What's your proposed solution?

fragment formieField on FieldInterface {
    name
    handle
    displayName
    uid
    id
    required
    defaultValue

    ...on Field_Dropdown {
        instructions
        options {
            isOptgroup
            isDefault
            isDeactivated #add this
            label
            value
        }
    }
}

Additional context

No response

engram-design commented 1 month ago

Added for the next release. To get this early, run composer require verbb/formie:"dev-craft-4 as 2.1.13".

engram-design commented 1 month ago

Updated in 2.1.14