CustomModuleCollectionConditionInput
Conditional logic that controls visibility of a question group
Fields
custom_module_id
· ID!
· required · ID of the CustomModule whose answer is evaluated to decide whether the question group is shown filter_type
· FilterTypeEnum!
· required · The comparison operator applied to the CustomModule's answer Used By
Definition
"""Conditional logic that controls visibility of a question group"""input CustomModuleCollectionConditionInput { """ ID of the CustomModule whose answer is evaluated to decide whether the question group is shown """ custom_module_id: ID!
""" The comparison operator applied to the CustomModule's answer """ filter_type: FilterTypeEnum!
""" The value the CustomModule's answer is compared against """ value_to_filter: String!}