SettingsKeyValue
Represents a key-value pair for settings of an entity. This type is used to return settings in a structured format, where the key is a string and the value is a JSON object.
type SettingsKeyValue {
entityId: ID!
entityType: SettingsEntityTypeEnum!
key: String!
value: JSON
}
Fields
SettingsKeyValue.entityId ● ID! non-null scalar
The ID of the entity for which the setting is defined.
SettingsKeyValue.entityType ● SettingsEntityTypeEnum! non-null enum
The type of the entity for which the setting is defined.
SettingsKeyValue.key ● String! non-null scalar
The key of the setting.
SettingsKeyValue.value ● JSON scalar
The value of the setting, stored as a JSON object.
Returned By
settingsByKey query