> ## Documentation Index
> Fetch the complete documentation index at: https://developer.qminder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LocalDate

> Date without time component

A date scalar representing a calendar date without time or timezone information.

## Format

* **Input/Output**: `yyyy-MM-dd`

## Examples

```graphql theme={null}
# Query opening hours exceptions
query {
  location(id: "123") {
    openingHoursExceptions2 {
      date  # Returns LocalDate
      closed
    }
  }
}
```

```json theme={null}
// Response
{
  "openingHoursExceptions2": [
    {
      "date": "2024-12-25",
      "closed": true
    }
  ]
}
```

```graphql theme={null}
scalar LocalDate
```

### Member Of

[`OpeningHoursException`](/reference/graphql/objects/opening-hours-exception)  <mark class="gqlmd-mdx-badge">object</mark><span class="gqlmd-mdx-bullet"> ● </span>[`UserAppointmentsScheduleOverride`](/reference/graphql/objects/user-appointments-schedule-override)  <mark class="gqlmd-mdx-badge">object</mark>
