SettingInput
Represents a single setting to be saved for an entity. Contains the setting key and its value, which can be any JSON-serializable data.
input SettingInput {
key: String!
value: JSON!
}
Fields
SettingInput.key ● String! non-null scalar
The setting key to save (e.g., 'webhook_config', 'order_processing')
SettingInput.value ● JSON! non-null scalar
The setting value (can be any JSON-serializable data: primitives, objects, arrays, etc.)
Member Of
SaveEntitySettingsInput input