ValuesetItemCreateInput
No description
input ValuesetItemCreateInput {
valuesetId: Int!
value: String!
descriptions: [LocalizedStringInput!]
extra: String
}
Fields
ValuesetItemCreateInput.valuesetId
● Int!
non-null scalar
Identifier of the parent value set that will contain this new item.
Must reference an existing value set that the user has permission to modify.
ValuesetItemCreateInput.value
● String!
non-null 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.
ValuesetItemCreateInput.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.
ValuesetItemCreateInput.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
valuesetItemCreate
mutation