Skip to content

CheckoutFormAnswerInput

Payload for an answer

Fields

answer · String · The answer
conditional_custom_module_id · ID · The ID of the custom module
custom_module_id · String · The ID of the custom module
filter_type · String · The type of the filter
mod_type · String · The mod_type (e.g question type) that is being answered.
id · ID · Unique ID for the answer
label · String · The label for the answer
user_id · String · The ID of the user who created the answer
value_to_filter · String · The value to filter on

Used By

Definition

"""
Payload for an answer
"""
input CheckoutFormAnswerInput {
"""
The answer
"""
answer: String
"""
The ID of the custom module
"""
conditional_custom_module_id: ID
"""
The ID of the custom module
"""
custom_module_id: String
"""
The type of the filter
"""
filter_type: String
"""
The mod_type (e.g question type) that is being answered.
"""
mod_type: String
"""
Unique ID for the answer
"""
id: ID
"""
The label for the answer
"""
label: String
"""
The ID of the user who created the answer
"""
user_id: String
"""
The value to filter on
"""
value_to_filter: String
}