Skip to main content

Settings

Representation of a generic setting in the system

type Settings {
name: String
description: String
value: String
updatedAt: DateTime
permittedValues: [SettingsPermittedValue]
id: Int!
type: String
location: String
textId: String
updatedBy: String
}

Fields

name ● String

The internal name of the setting

description ● String

The display text of the setting

value ● String

The value of the setting

updatedAt ● DateTime

When the setting was last updated

permittedValues ● [SettingsPermittedValue]

Permitted values of the setting. Only admin can fetch this

id ● Int!

Internal id of the setting. Only admin can fetch this

type ● String

Internal type of the setting. Only admin can fetch this

location ● String

Internal location of the setting. Only admin can fetch this

textId ● String

Internal text id of the setting. Only admin can fetch this

updatedBy ● String

Initial of the person who last updated the setting. Only admin can fetch this

Example

{
"updatedAt": "2024-05-03T11:52:33Z",
"permittedValues": [
{}
]
}