Skip to main content

ValuesetItemUpdateInput

Partial update data for modifying existing value set item properties. All fields are optional - only provided fields will be updated while others remain unchanged. The parent value set association cannot be changed after creation for data integrity reasons.

input ValuesetItemUpdateInput {
value: String
descriptions: [LocalizedStringInput!]
extra: String
}

Fields

ValuesetItemUpdateInput.value ● String scalar

The actual data value that this item will represent in the system.

Must be unique within the parent value set and will be used as the key for selection and processing. Length must be between 1 and 512 characters.

ValuesetItemUpdateInput.descriptions ● [LocalizedStringInput!] list input

Human-readable labels for this value set item in multiple languages.

These descriptions will be displayed to users in dropdown lists, selection interfaces, and other UI components. Providing multiple languages ensures proper internationalization support.

ValuesetItemUpdateInput.extra ● String scalar

Additional metadata or supplementary information for this value set item.

Can be used to store related data such as currency codes, country codes, or other contextual information that enhances the item's functionality. Maximum length is 512 characters.

Member Of

valuesetItemUpdate mutation