OBJECT
Site
Site
link GraphQL Schema definition
- type Site {
- # Id
- : Int!
- # Title
- : String!
- # Used for internal purposes. Use « computedHost » if you care about possible «
- # www. » prefix (e.g. « www.host.com »). Use « fullHost » if you care about
- # protocol prefix too (e.g. « https://www.host.com »).
- : String!
- # Host with « www. » prefix depending on site's configuration
- : String
- # Host with protocol
- : String
- : String
- # Company that owns this Site
- : Company
- # List of availables locales
- : [String!]!
- # Locale by default for site
- : String @deprecated( reason: "Please use "defaultTranslation" field. This field will be modified soon!" )
- # Locale by default for site
- : String!
- # Email of contact
- : String
- # Billing Status of site
- : SiteBillingStatus!
- # Is site deleted?
- : Boolean
- # Type
- : SiteType!
- # Is Site indexable?
- : Boolean
- # Is Site in Https?
- : Boolean
- # Is Site accessible with www domain ?
- : Boolean
- # BackOffice logo
- : Media
- # Platform Login Form logo
- : Media
- # Logo
- : Media
- # Favicon
- : Media
- # Date of creation
- : DateTime
- # Date of last update
- : DateTime
- # Site's import reference
- : String
- # Is Site enabled?
- : Boolean!
- # Phone number
- : String
- # Call center number (for platform only)
- : PhoneNumber
- # Articles that belong to the Site
- #
- # Arguments
- # title: If specified, filter articles by title (case
- # insensitive)
- (: String): [Article]
- # An Article that belongs to the Site
- #
- # Arguments
- # articleId: Id of an Article
- # searchChild: If "articleId" is for a parent article, the
- # article child associated to site will be resolved.
- (: Int!, : Boolean): Article
- # CallTrackings that belong to the Site
- : [CallTracking!]
- # The CallTracking that belongs to the Site
- #
- # Arguments
- # callTrackingId: Id of a CallTracking (not used anymore, but the
- # argument still exists to prevent breaking changes)
- (: Int): CallTracking
- # Statistics of CallTrackings (for a Platform)
- : AssociativeArray!
- # Statistics of CallTrackings (for a Site)
- : SiteCallTrackingsStatistics
- # Detailled statistics of CallTrackings
- : AssociativeArray!
- # List of calls for site with call tracking
- #
- # Arguments
- # limit: Number of calls to display
- # page: Page
- # startDate: Start date for data
- # endDate: End date for data
- (: Int, : Int, : String, : String): [SiteCall!]
- # Categories that belong to the Site
- #
- # Arguments
- # title: If specified, search categories by title (case
- # insensitive)
- (: String): [Category]
- # Category that belongs to the Site
- #
- # Arguments
- # categoryId: Id of a Category
- (: Int!): Category
- # ContactForms that belong to the Site
- : [ContactForm]!
- # A ContactForm that belongs to the Site
- #
- # Arguments
- # contactFormId: Id of a ContactForm
- (: Int!): ContactForm
- # Contact form submissions
- #
- # Arguments
- # contactFormId: Id of a ContactForm
- # date: A date (Format YYYY-mm-dd), all submissions for this
- # exact date
- # fromDate: A date (Format YYYY-mm-dd), all submissions from this
- # date
- (
- : Int!,
- : String,
- : String
- ): [ContactFormSubmission]!
- # Arguments
- # contactFormId: Id of a ContactForm
- (
- : Int!
- ): AssociativeArray
- : SiteContactFormsSubmissionsStatistics!
- # Fields that belong to the Site
- #
- # Arguments
- # token: If specified, search fields by token (case insensitive)
- (: String): [Field]!
- # Field that belongs to the Site
- #
- # Arguments
- # fieldId: Id of the Field
- (: Int!): Field
- # Locations that belongs to the Site
- : [Location]!
- # A Location that belongs to the Site
- #
- # Arguments
- # locationId: Id of Location
- (: Int!): Location
- # Paginated list of Media belonging to the current site from a repository, and
- # optionnaly to a category.
- #
- # Arguments
- # page: [Not documented]
- # perPage: [Not documented]
- # repository: Type of the Site
- # categoryId: Id of a Media category
- # filenameFilter: Filter Medias by filename. This is case
- # insensitive.
- # titleFilter: Filter Medias by title. This is case insensitive.
- (
- : Int,
- : Int,
- : SiteType!,
- : Int,
- : String,
- : String
- ): PaginatableMedias
- # List of Media belonging to the current site from a repository, and optionnaly to
- # a category.
- #
- # Arguments
- # repository: Type of the Site
- # categoryId: Id of a Media category
- # filenameFilter: Filter Medias by filename. This is case
- # insensitive.
- # titleFilter: Filter Medias by title. This is case insensitive.
- (
- : SiteType!,
- : Int,
- : String,
- : String
- ): [Media]!
- # A Media that belongs to the Site
- #
- # Arguments
- # mediaId: Id of a Media
- # filename: Filename of a Media
- (: Int, : String): Media
- # List of Media belonging to the current site for form
- #
- # Arguments
- # mediaIds: List of the Media ids
- (: [Int]!): [Media]
- # List of Media categories belonging to the current site
- : [MediaCategory]
- # Media category belonging to the current site
- #
- # Arguments
- # mediaCategoryId: Id of a Media category
- (: Int!): MediaCategory
- # Statistics of Visits
- : AssociativeArray! @deprecated( reason: "Please use "visitsDetailedStatistics" field if you need stats for each platform's sites. This field will be modified soon!" )
- # Statistics of Visits
- : AssociativeArray!
- # Statistics of Visits (for a Site).
- : SiteVisitsStatistics
- # Keywords statistics for the last X months for a Platform and its children.
- #
- # Arguments
- # period: Number of months to retrieve (from now)
- (: Int): AssociativeArray!
- # Keywords statistics for a Site.
- #
- # Arguments
- # nbMonths: Number of months to retrieve (from now)
- (: Int): SiteKeywordsStatistics!
- # Image sliders that belong to the Site
- : [ImageSlider]!
- # ImagineLists that belong to the Site
- : [ImagineList]!
- # ImagineList that belongs to the Site
- #
- # Arguments
- # imagineListId: Id of a ImagineList
- # searchChild: If "imagineListId" is for a parent ImagineList,
- # the ImagineList child associated to site will be resolved.
- (: Int!, : Boolean): ImagineList
- # Theme engine used for Site
- : ThemeEngine!
- # Theme used for Site
- : Theme
- # Available themes for Site
- : [Theme]!
- # Services that belong to the site
- : [Service]!
- # A services that belongs to the site
- #
- # Arguments
- # serviceId: Id of a service
- (: Int!): Service
- # Categories of services that belong to the site
- : [ServiceCategory]!
- # A category of services that belongs to the site
- #
- # Arguments
- # serviceCategoryId: Id of a category of services
- (: Int!): ServiceCategory
- # List of reviews
- : [Review]
- # Parent site (if exists)
- : Site
- # Platform's children sites
- : [Site]
- # Average eKomi rating
- : Float
- # Category that belongs to the Site
- #
- # Arguments
- # teamWorkerId: Id of a TeamWorker
- (: Int!): TeamWorker
- # Emails list separate by comma
- : String
- # Number of children websites that have HTTPS enabled or not
- : HttpsStatusStatistics
- # ALP Groups belongings to the parent of this Site
- : [AlpGroup]!
- # List tags available for site
- : [Tag!]!
- # List tags linked with site to filter articles
- : [Tag!]!
- # Should uploaded medias see their original filename kept?
- : Boolean!
- : LightenedUser
- }
link Require by
- AlpGroupA Group in the Admin Landing Page project
- Articlenull
- CallTrackingA CallTracking
- CompanyA Company
- ContactFormSubmissionnull
- ImagineListImagine List
- MediaMedia
- MediaCategoryMedia's category
- Mutationnull
- PagePage
- PaginatableSitesnull
- Querynull
- ServiceUn "Service" se définit comme quelque chose pouvant être vendu, et appartenant à une catégorie "ServiceCategory"
- ServiceCategoryUne catégorie de services
- SiteSite
- Usernull