OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • me: User
  • # Arguments
  • # siteId: Id of a Site
  • # siteHost: Host of a Site
  • site(siteId: Int, siteHost: String): Site
  • # Arguments
  • # siteId: Id of a site
  • # siteHost: Host of a site
  • # fallbackOnSiteBaseHost: [Not documented]
  • publicSite(siteId: Int, siteHost: String, fallbackOnSiteBaseHost: Boolean): PublicSite
  • # List of sites with https protocol
  • httpsSites: [Site]
  • # Arguments
  • # query: The Title or Host of the Site
  • # siteType: Type of the Sites
  • searchSites(query: String, siteType: SiteType): [Site]!
  • lightenedSites: [LightenedSite]!
  • # Arguments
  • # pageId: Id of a page
  • # pageTitle: Title of a page (siteId mandatory)
  • # siteId: Site of a page (pageTitle mandatory)
  • page(pageId: Int, pageTitle: String, siteId: Int): Page
  • # Arguments
  • # companyId: Id of a Company
  • # companyCrmId: CRM Id of a Company
  • company(companyId: Int, companyCrmId: String): Company
  • }

link Require by

This element is not required by anyone