AttributeUpdateInput
Input for updating an existing attribute's value.
Allows modification of the attribute's value while preserving its type and configuration. The new value must conform to the attribute description's type.
input AttributeUpdateInput {
value: AttributeValueInput!
}
Fields
AttributeUpdateInput.value
● AttributeValueInput!
non-null input
The new value data for this attribute.
Contains the updated attribute value in the appropriate format based on the attribute description's type. The value structure must match the type specified in the attribute's description.
Member Of
attributeUpdate
mutation