OBJECT

SiteThemeOrion

Site's Theme

link GraphQL Schema definition

  • type SiteThemeOrion {
  • # Id
  • id: Int!
  • # Theme version
  • themeVersion: ThemeVersion!
  • # Previous theme version (available for rollback)
  • previousThemeVersion: ThemeVersion
  • # Date of installation
  • installedAt: DateTime!
  • # Site-specific layout overrides.
  • layouts: [ThemeLayout]
  • # True when site-specific layouts have been saved (editing has started)
  • hasLayouts: Boolean!
  • # Site-specific variable overrides. Object keyed by variable id, value is the
  • # overridden defaultValue (same structure as ThemeVariable.defaultValue).
  • variableOverrides: Json!
  • # Site-specific CSS, replaces the theme CSS.
  • css: String
  • # Site-specific JS, replaces the theme JS.
  • js: String
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • }

link Require by