<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.15.0 -",
    "tvOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 6.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/FetchRequest/wrappedValue",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI12FetchRequestV12wrappedValueAA14FetchedResultsVyxGvp"
  },
  "title" : "wrappedValue"
}
-->

# wrappedValue

The fetched results of the fetch request.

```
@MainActor @preconcurrency var wrappedValue: FetchedResults<Result> { get }
```

## Discussion

SwiftUI returns the value associated with this property
when you use [`FetchRequest`](/documentation/SwiftUI/FetchRequest) as a property wrapper, and then access
the wrapped property by name. For example, consider the following
`quakes` property declaration that fetches a `Quake` type that the
<doc://com.apple.documentation/documentation/SwiftUI/loading-and-displaying-a-large-data-feed>
sample code project defines:

```
@FetchRequest(fetchRequest: request)
private var quakes: FetchedResults<Quake>
```

You access the request’s `wrappedValue`, which contains a
[`FetchedResults`](/documentation/SwiftUI/FetchedResults) instance, by referring to the `quakes` property
by name:

```
Text("Found \(quakes.count) earthquakes")
```

If you need to separate the request and the result
entities, you can declare `quakes` in two steps by
using the request’s `wrappedValue` to obtain the results:

```
var fetchRequest = FetchRequest<Quake>(fetchRequest: request)
var quakes: FetchedResults<Quake> { fetchRequest.wrappedValue }
```

The `wrappedValue` property returns an empty array when there are no
fetched results — for example, because no entities satisfy the
predicate, or because the data store is empty.

---

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)