Skip to main content
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

# Query user availability time slots
query {
  userAppointmentsAvailability(userId: "123", locationId: "456") {
    weeklySchedule {
      monday {
        dailySchedule {
          availableFrom  # Returns LocalTime formatted as "HH:mm"
          availableTo
        }
      }
    }
  }
}
// Response
{
  "weeklySchedule": {
    "monday": {
      "dailySchedule": [
        {
          "availableFrom": "09:00",
          "availableTo": "17:00"
        }
      ]
    }
  }
}
scalar LocalTime

Member Of

UserAppointmentsAvailabilityTimeInterval object