UpdateConditionTypeWithRulesInput
Fields to update on a condition type, including its full rule set.
input UpdateConditionTypeWithRulesInput {
conditionTypeId: String!
name: String
description: String
inputType: String
rules: [ConditionTypeRuleInput!]
}
Fields
UpdateConditionTypeWithRulesInput.conditionTypeId ● String! non-null scalar
The condition type to update.
UpdateConditionTypeWithRulesInput.name ● String scalar
New name; must be non-empty and unique within the workspace when set.
UpdateConditionTypeWithRulesInput.description ● String scalar
New description.
UpdateConditionTypeWithRulesInput.inputType ● String scalar
New input type: "radio" or "multi_select".
UpdateConditionTypeWithRulesInput.rules ● [ConditionTypeRuleInput!] list input
The complete rule set for the condition type. Rules absent from this list are removed, and any associations left with no rules are cleared.
Member Of
updateConditionTypeWithRules mutation