---
title: "init(documentType:predicate:limit:sortDescriptors:includeDocumentData:resultsHandler:)"
framework: healthkit
role: symbol
role_heading: Initializer
path: "healthkit/hkdocumentquery/init(documenttype:predicate:limit:sortdescriptors:includedocumentdata:resultshandler:)"
---

# init(documentType:predicate:limit:sortDescriptors:includeDocumentData:resultsHandler:)

Instantiates and returns a document query.

## Declaration

```swift
init(documentType: HKDocumentType, predicate: NSPredicate?, limit: Int, sortDescriptors: [NSSortDescriptor]?, includeDocumentData: Bool, resultsHandler: @escaping @Sendable (HKDocumentQuery, [HKDocumentSample]?, Bool, (any Error)?) -> Void)
```

## Parameters

- `documentType`: The type of document to search for. For a list of supported document types, see Document Type Identifier in doc://com.apple.healthkit/documentation/HealthKit/healthkit-constants.
- `predicate`: A predicate that limits the results returned by the query. Pass nil to receive all the documents of the specified type.
- `limit`: The maximum number of samples returned by the query. If you want to return all matching samples, use doc://com.apple.healthkit/documentation/HealthKit/HKObjectQueryNoLimit.
- `sortDescriptors`: An array of sort descriptors that specify the order of the results returned by this query. Pass nil if you don’t need the results in a specific order. note: HealthKit defines a number of sort identifiers (for example, doc://com.apple.healthkit/documentation/HealthKit/HKSampleSortIdentifierStartDate). Use the sort descriptors you create with these identifiers only in queries. You cannot use them to perform an in-memory sort of an array of samples.
- `includeDocumentData`: Pass doc://com.apple.documentation/documentation/Swift/true to include the full document data. Pass doc://com.apple.documentation/documentation/Swift/false to just receive a summary of the document. For CDA documents, the summary includes the title, the patient’s name, the author’s name, and the custodian’s name. Since the full document data can be quite large, only pass doc://com.apple.documentation/documentation/Swift/true when you need to access the full document’s data.
- `resultsHandler`: A block that is called each time a new batch of documents is available. The document query returns its results incrementally in batches. The results handler may be called multiple times each time the query is executed. This block takes the following parameters:

## Return Value

Return Value A newly initialized document query object.

## Discussion

Discussion After you instantiate the query, call the HKHealthStore class’s execute(_:) method to run it. Queries run on an anonymous background queue. As soon as the query is complete, the results handler is executed on the same background queue (but not necessarily on the same thread). You typically dispatch these results to the main queue to update the user interface.

## See Also

### Creating Document Queries

- [HKObjectQueryNoLimit](healthkit/hkobjectquerynolimit.md)
