Skip to content

CustomModuleCollection

A group of questions within a custom module form

Fields

condition_custom_module · CustomModule · The question whose answer is evaluated to decide whether this group is shown
condition_custom_module_id · ID · ID of the question whose answer is evaluated to decide whether this group is shown
created_at · ISO8601DateTime! · required · The date on which the question group was created
custom_module_form · CustomModuleForm · The form this question group belongs to
custom_module_form_id · ID · ID of the form this question group belongs to
custom_modules · [CustomModule!] · The questions within this group
filter_type · FilterTypeEnum · The comparison operator applied to the question's answer
id · ID! · required · The unique identifier of the question group
label · String! · required · Display label for the question group
position · Float! · required · Ordering position within the form
updated_at · ISO8601DateTime! · required · The date on which the question group was last updated
value_to_filter · String · The value the question's answer is compared against

Used By

Definition

"""
A group of questions within a custom module form
"""
type CustomModuleCollection {
"""
The question whose answer is evaluated to decide whether this group is shown
"""
condition_custom_module: CustomModule
"""
ID of the question whose answer is evaluated to decide whether this group is shown
"""
condition_custom_module_id: ID
"""
The date on which the question group was created
"""
created_at: ISO8601DateTime!
"""
The form this question group belongs to
"""
custom_module_form: CustomModuleForm
"""
ID of the form this question group belongs to
"""
custom_module_form_id: ID
"""
The questions within this group
"""
custom_modules: [CustomModule!]
"""
The comparison operator applied to the question's answer
"""
filter_type: FilterTypeEnum
"""
The unique identifier of the question group
"""
id: ID!
"""
Display label for the question group
"""
label: String!
"""
Ordering position within the form
"""
position: Float!
"""
The date on which the question group was last updated
"""
updated_at: ISO8601DateTime!
"""
The value the question's answer is compared against
"""
value_to_filter: String
}