Skip to content

FormAnswerInput

Payload for an answer

Fields

answer · String · The answer
conditional_custom_module_id · ID · The ID of the conditional custom module
custom_module_id · String · The ID of the custom module
filter_type · String · The type of filter
mod_type · String · (CURRENTLY UNUSED) The mod_type (e.g question type) that is being answered.
metadata · String · A serialized JSON string of metadata. Maximum character limit of 128,000.
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 by

Used By

Definition

"""
Payload for an answer
"""
input FormAnswerInput {
"""
The answer
"""
answer: String
"""
The ID of the conditional custom module
"""
conditional_custom_module_id: ID
"""
The ID of the custom module
"""
custom_module_id: String
"""
The type of filter
"""
filter_type: String
"""
(CURRENTLY UNUSED) The mod_type (e.g question type) that is being answered.
"""
mod_type: String
"""
A serialized JSON string of metadata. Maximum character limit of 128,000.
"""
metadata: 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 by
"""
value_to_filter: String
}