Skip to content

UpdateCustomModuleCollectionInput

Autogenerated input type of UpdateCustomModuleCollection

Fields

deprecated DO NOT USE
id · ID! · required · ID of the question group to update
label · String · Display label for the question group
position · Float · Ordering position within the form. Use index instead to position relative to existing items
index · Int · Index among top-level items (ungrouped questions and other groups) to position this group at
custom_module_collection_condition · CustomModuleCollectionConditionInput · Conditional logic that controls visibility of this group. Pass null to clear.

Used By

Definition

"""
Autogenerated input type of UpdateCustomModuleCollection
"""
input UpdateCustomModuleCollectionInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the question group to update
"""
id: ID!
"""
Display label for the question group
"""
label: String
"""
Ordering position within the form. Use index instead to position relative to existing items
"""
position: Float
"""
Index among top-level items (ungrouped questions and other groups) to position this group at
"""
index: Int
"""
Conditional logic that controls visibility of this group. Pass null to clear.
"""
custom_module_collection_condition: CustomModuleCollectionConditionInput
}