Hi,
I try to fetch weather information for multiple dates through a single query but I only get information for the first day.
let today = Date()
let tomorrow = Calendar.current.date(byAdding: DateComponents(day: 1), to: today)!
let forecast = try? await WeatherService.shared.weather(for: location, including: .daily(startDate: today, endDate: tomorrow))
Can we get weather information for a range of day?