Skip to content

CreateCustomModuleCollectionInput

Autogenerated input type of CreateCustomModuleCollection

Fields

deprecated DO NOT USE
custom_module_form_id · ID! · required · ID of the form this question group belongs to
label · String! · required · Display label for the question group
index · Int · Index among top-level items (ungrouped questions and other groups) to position this group at
position · Float · Deprecated. Use index instead.
deprecated Use `index` instead
custom_module_collection_condition · CustomModuleCollectionConditionInput · Conditional logic that controls visibility of this group

Used By

Definition

"""
Autogenerated input type of CreateCustomModuleCollection
"""
input CreateCustomModuleCollectionInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the form this question group belongs to
"""
custom_module_form_id: ID!
"""
Display label for the question group
"""
label: String!
"""
Index among top-level items (ungrouped questions and other groups) to position this group at
"""
index: Int
"""
Deprecated. Use index instead.
"""
position: Float @deprecated(reason: "Use `index` instead")
"""
Conditional logic that controls visibility of this group
"""
custom_module_collection_condition: CustomModuleCollectionConditionInput
}