OBJECT
Query
link GraphQL Schema definition
- type Query {
- : User
- # Arguments
- # siteId: Id of a Site
- # siteHost: Host of a Site
- (: Int, : String): Site
- # Arguments
- # siteId: Id of a site
- # siteHost: Host of a site
- # fallbackOnSiteBaseHost: [Not documented]
- (: Int, : String, : Boolean): PublicSite
- # List of sites with https protocol
- : [Site]
- # Arguments
- # query: The Title or Host of the Site
- # siteType: Type of the Sites
- (: String, : SiteType): [Site]!
- # List of sites
- #
- # Arguments
- # page: [Not documented]
- # perPage: [Not documented]
- # siteType: Type of the Sites
- (: Int, : Int, : SiteType): PaginatableSites
- : [LightenedSite]!
- # Arguments
- # themeId: Id of theme
- (: Int!): ThemeV2
- # List of themes
- #
- # Arguments
- # page: [Not documented]
- # perPage: [Not documented]
- (: Int, : Int): PaginatableThemes
- # List of theme parameter types
- : [ThemeComponentParameterType]!
- # List of theme parameter select types
- : [ThemeComponentParameterSelectType]!
- # List of theme entity parameter types
- : [ThemeComponentEntityParameterType]!
- # Asset validation rules for theme uploads
- : ThemeAssetValidationRules!
- # Arguments
- # pageId: Id of a page
- # pageTitle: Title of a page (siteId mandatory)
- # siteId: Site of a page (pageTitle mandatory)
- (: Int, : String, : Int): Page
- # Arguments
- # companyId: Id of a Company
- # companyCrmId: CRM Id of a Company
- (: Int, : String): Company
- # List of all available timezones
- : [String!]!
- # List of days of the week with translations
- : [DayOfWeekOption!]!
- # List of analytics type values creatable on a given site (excludes non-multiple
- # types already configured)
- #
- # Arguments
- # siteId: Id of the site
- (: Int!): [String!]!
- # History of saved versions for a given site Orion layout (latest first)
- #
- # Arguments
- # siteId: Id of the site
- # siteThemeId: Id of the SiteThemeOrion
- # layoutUuid: UUID of the layout whose history is requested
- (
- : Int!,
- : Int!,
- : String!
- ): [OrionLayoutSnapshot!]!
- # JSON-encoded content (array of SectionDTO) of a given snapshot, or null if not
- # found
- #
- # Arguments
- # siteId: Id of the site
- # siteThemeId: Id of the SiteThemeOrion
- # snapshotId: Id of the OrionLayoutSnapshot
- (
- : Int!,
- : Int!,
- : Int!
- ): String
- # Resolve Webpack Encore entry CSS and JS file URLs for the given entry names
- #
- # Arguments
- # names: List of Encore entry names to resolve (e.g.
- # ["theme/orion", "location/orion"])
- (: [String!]!): [EncoreEntry!]!
- }
link Require by
This element is not required by anyone