> ## 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.

# LocalTime

> Time without date component

A time scalar representing a time of day without date or timezone information.

## Format

* **Input/Output**: `HH:mm:ss` or `HH:mm` (when using `@formatTime` directive)

## Examples

```graphql theme={null}
# Query user availability time slots
query {
  userAppointmentsAvailability(userId: "123", locationId: "456") {
    weeklySchedule {
      monday {
        dailySchedule {
          availableFrom  # Returns LocalTime formatted as "HH:mm"
          availableTo
        }
      }
    }
  }
}
```

```json theme={null}
// Response
{
  "weeklySchedule": {
    "monday": {
      "dailySchedule": [
        {
          "availableFrom": "09:00",
          "availableTo": "17:00"
        }
      ]
    }
  }
}
```

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

### Member Of

[`UserAppointmentsAvailabilityTimeInterval`](/reference/graphql/objects/user-appointments-availability-time-interval)  <mark class="gqlmd-mdx-badge">object</mark>
