<!--
{
  "availability" : [
    "iOS: 18.0.0 -",
    "iPadOS: 18.0.0 -",
    "macCatalyst: 18.0.0 -",
    "macOS: 15.0.0 -",
    "tvOS: 18.0.0 -",
    "visionOS: 2.0.0 -",
    "watchOS: 11.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "WeatherKit",
  "identifier" : "/documentation/WeatherKit/DailyWeatherSummaryQuery",
  "metadataVersion" : "0.1.0",
  "role" : "Structure",
  "symbol" : {
    "kind" : "Structure",
    "modules" : [
      "WeatherKit"
    ],
    "preciseIdentifier" : "s:10WeatherKit05DailyA12SummaryQueryV"
  },
  "title" : "DailyWeatherSummaryQuery"
}
-->

# DailyWeatherSummaryQuery

A structure that encapsulates a generic daily weather summary dataset request.

```
struct DailyWeatherSummaryQuery<T> where T : Decodable, T : Encodable, T : Equatable, T : Sendable
```

## Overview

Use the properties of this structure to create a daily weather summary query. You can combine multiple queries into a single `WeatherService` request.

Here’s how to get a daily weather summary for New York City:

```swift
let (dailyPrecipitationSummary, dailyTemperatureSummary) = try await service.dailySummary(for: newYork, spanning: timeInterval, including: .precipitation, .temperature)
```

## Topics

### Type Properties

[`static var precipitation: DailyWeatherSummaryQuery<DayPrecipitationSummary>`](/documentation/WeatherKit/DailyWeatherSummaryQuery/precipitation)

The daily precipitation summary query.

[`static var temperature: DailyWeatherSummaryQuery<DayTemperatureSummary>`](/documentation/WeatherKit/DailyWeatherSummaryQuery/temperature)

The daily temperature summary query.

## Relationships

### Conforms To

[`Sendable`](/documentation/Swift/Sendable)

[`SendableMetatype`](/documentation/Swift/SendableMetatype)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)