OBJECT

Settings

Global application settings

link GraphQL Schema definition

  • type Settings {
  • # The unique setting ID.
  • id: Int!
  • # The setting's code name.
  • name: String!
  • # The human readable setting name.
  • label: String!
  • # A description of the setting.
  • description: String
  • # The setting's value.
  • value: String!
  • # The setting's field type.
  • type: Int!
  • # True if the setting is not modifyable at all.
  • is_readonly: Boolean!
  • # True if the setting is loaded on login.
  • is_autoload: Boolean!
  • # True if dashboard users can edit it.
  • is_user_editable: Boolean!
  • }