Skip to main content
A date scalar representing a calendar date without time or timezone information.

Format

  • Input/Output: yyyy-MM-dd

Examples

# Query opening hours exceptions
query {
  location(id: "123") {
    openingHoursExceptions2 {
      date  # Returns LocalDate
      closed
    }
  }
}
// Response
{
  "openingHoursExceptions2": [
    {
      "date": "2024-12-25",
      "closed": true
    }
  ]
}
scalar LocalDate

Member Of

OpeningHoursException object ● UserAppointmentsScheduleOverride object