OBJECT
ThemeRestorePoint
Theme content archived right before a save, kept until a version is created
link GraphQL Schema definition
- type ThemeRestorePoint {
- # Id
- : Int!
- # Name of the user who triggered the save
- : String
- # Date of creation
- : DateTime!
- # Parts of the theme the save has changed
- : [ThemeRestorePointChange]!
- # Title
- : String
- # Description
- : String
- # Specifications
- : String
- # Designer
- : String
- # Integrator
- : String
- # CSS Stylesheet
- : String
- # JavaScript code
- : String
- # List of components
- : [ThemeComponent]!
- # List of layouts
- : [ThemeLayout]!
- # List of theme variables
- : [ThemeVariable]!
- }