OBJECT

PublicSite

A subset of type "Site", containing only some fields that need to be accessed without any permission restriction.

link GraphQL Schema definition

  • type PublicSite {
  • # Id of the Site
  • id: Int!
  • # Title of the Site
  • title: String!
  • # URL of the Site
  • host: String
  • baseHost: String
  • # BackOffice logo of the site
  • backOfficeLogo: Media
  • # Platform LoginForm logo of the site
  • platformLoginFormLogo: Media
  • # Logo of the site
  • logo: Media
  • # Favicon of the site
  • favicon: Media
  • # Should uploaded medias see their original filename kept?
  • generateWithOriginalFileName: Boolean!
  • # List of availables locales
  • locales: [String!]!
  • # Locale by default for site
  • defaultTranslation: String
  • # Parent site, without access checks.
  • parent: PublicSite
  • # Call center number (for platform only)
  • callCenterNumber: PhoneNumber
  • }