Skip to content

CustomModuleCollectionSnapshot

A per-fill copy of a question group that cannot be changed after it is created. This is captured when a form is submitted.

Fields

condition_custom_module · CustomModule · The question whose answer determines whether this group is shown
created_at · ISO8601DateTime! · required · The date on which the snapshot was created
custom_module_collection · CustomModuleCollection! · required · The source question group this snapshot was taken from
filter_type · FilterTypeEnum · The comparison operator applied to the question's answer
form_answer_group · FormAnswerGroup! · required · The form fill this snapshot belongs to
id · ID! · required · The unique identifier of the snapshot
label · String! · required · Display label of the question group at the time of submission
value_to_filter · String · The value the question's answer is compared against

Used By

Definition

"""
A per-fill copy of a question group that cannot be changed after it is created. This is captured when a form is submitted.
"""
type CustomModuleCollectionSnapshot {
"""
The question whose answer determines whether this group is shown
"""
condition_custom_module: CustomModule
"""
The date on which the snapshot was created
"""
created_at: ISO8601DateTime!
"""
The source question group this snapshot was taken from
"""
custom_module_collection: CustomModuleCollection!
"""
The comparison operator applied to the question's answer
"""
filter_type: FilterTypeEnum
"""
The form fill this snapshot belongs to
"""
form_answer_group: FormAnswerGroup!
"""
The unique identifier of the snapshot
"""
id: ID!
"""
Display label of the question group at the time of submission
"""
label: String!
"""
The value the question's answer is compared against
"""
value_to_filter: String
}