OBJECT

Location

Location

link GraphQL Schema definition

  • type Location {
  • # Id
  • id: Int!
  • # Phone number
  • tel: String!
  • # Fax number
  • fax: String
  • # Email address
  • mail: String!
  • # Address
  • address: Address
  • # Is this Location the default Location for the site?
  • defaultLocation: Boolean!
  • # Opening Hours for location
  • openingHours: [OpeningHour]
  • # TimeZone in format like Europe/Paris or UTC
  • timeZone: String!
  • # Use opening Hours in microData for site
  • openingHoursForMicroData: Boolean!
  • # Location parent, if exists
  • parent: Location
  • # Translations
  • translations: [LocationTranslation!]!
  • # Inheritance status
  • inheritanceStatus: String!
  • # Site that owns this Location
  • site: PublicSite
  • }