Skip to content

CustomModuleConditionInput

Payload for a CustomModuleCondition

Fields

_destroy · Boolean · If true, the condition will be deleted
conditional_custom_module_id · ID · The ID of the CustomModule that will be shown if the condition is met
filter_type · String · The type of filter to apply to the CustomModuleCondition
id · ID · The ID of the CustomModuleCondition
value_to_filter · String · The value to filter by

Used By

Definition

"""
Payload for a CustomModuleCondition
"""
input CustomModuleConditionInput {
"""
If true, the condition will be deleted
"""
_destroy: Boolean
"""
The ID of the CustomModule that will be shown if the condition is met
"""
conditional_custom_module_id: ID
"""
The type of filter to apply to the CustomModuleCondition
"""
filter_type: String
"""
The ID of the CustomModuleCondition
"""
id: ID
"""
The value to filter by
"""
value_to_filter: String
}