You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/healthcare-apis/azure-api-for-fhir/overview-of-search.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ GET {{FHIR_URL}}/metadata
84
84
To see the search parameters in the capability statement, navigate to `CapabilityStatement.rest.resource.searchParam` to see the search parameters for each resource, and `CapabilityStatement.rest.searchParam` to find the search parameters for all resources.
85
85
86
86
> [!NOTE]
87
-
> The Azure API for FHIR does not automatically create or index any search parameters not defined by the FHIR specification. However, we do provide support for you to define your own [search parameters](how-to-do-custom-search.md).
87
+
> The Azure API for FHIR doesn't automatically create or index any search parameters not defined by the FHIR specification. However, we do provide support for you to define your own [search parameters](how-to-do-custom-search.md).
88
88
89
89
### Composite search parameters
90
90
Composite search allows you to search against value pairs. For example, if you were searching for a height observation where the person was 60 inches, you would want to make sure that a single component of the observation contained the code of height **and** the value of 60. If not, you could get results that include 60, but not for height. For instance, a weight of 60 and height of 48. Both parameters meet the search condition, but not in the same field.
@@ -101,7 +101,7 @@ With the Azure API for FHIR, we support the following search parameter type pair
101
101
For more information, see the HL7 [Composite Search Parameters](https://www.hl7.org/fhir/search.html#composite).
102
102
103
103
> [!NOTE]
104
-
> Composite search parameters do not support modifiers per the FHIR specification.
104
+
> Composite search parameters don't support modifiers per the FHIR specification.
105
105
106
106
### Modifiers & prefixes
107
107
@@ -130,12 +130,12 @@ To help manage the returned resources, there are search result parameters that y
130
130
|**Search result parameters**|**Azure API for FHIR**|**FHIR service in Azure Health Data Services**|**Comment**|
|_count | Yes | Yes |_count is limited to 1000 resources. If set higher than 1000, only 1000 are returned and a warning is returned in the bundle. |
133
+
|_count | Yes | Yes |_count is limited to 1,000 resources. If set higher than 1,000, only 1,000 are returned and a warning is returned in the bundle. |
134
134
|_include | Yes | Yes | Included items are limited to 100. _include on PaaS and OSS on Azure Cosmos DB don't include :iterate support [(#2137)](https://github.com/microsoft/fhir-server/issues/2137). |
135
135
|_revinclude | Yes | Yes |Included items are limited to 100. _revinclude on PaaS and OSS on Azure Cosmos DB don't include :iterate support [(#2137)](https://github.com/microsoft/fhir-server/issues/2137). There's also an incorrect status code for a bad request [#1319](https://github.com/microsoft/fhir-server/issues/1319)|
136
136
|_summary | Yes | Yes ||
137
137
|_total | Partial | Partial |_total=none and _total=accurate |
138
-
|_sort | Partial | Partial | sort=_lastUpdated is supported on Azure API for FHIR and the FHIR service. For Azure API for FHIR and OSS Azure Cosmos DB databases created after April 20, 2021, sort is supported on first name, last name, birthdate, and clinical date. |
138
+
|_sort | Partial | Partial | sort=_lastUpdated is supported on Azure API for FHIR and the FHIR service. For Azure API for FHIR and OSS Azure Cosmos DB databases created after April 20, 2021, sort is supported on first name, family name, birthdate, and clinical date. |
139
139
|_contained | No | No ||
140
140
|_containedType | No | No ||
141
141
|_score | No | No ||
@@ -154,7 +154,7 @@ A [chained search](https://www.hl7.org/fhir/search.html#chaining) allows you to
154
154
Similarly, you can do a reverse chained search. This allows you to get resources where you specify criteria on other resources that refer to them. For more examples of chained and reverse chained search, refer to the [FHIR search examples](search-samples.md) page.
155
155
156
156
> [!NOTE]
157
-
> In the Azure API for FHIR and the open source backed by Azure Cosmos DB, there's a limitation where each subquery required for the chained and reverse chained searches only return 1000 items. If more than 1000 items found, you’ll receive the following error message: “Subqueries in a chained expression can't return more than 1000 results, please use a more selective criteria.” A successful query needs to be very specific regarding what you are looking for.
157
+
> In the Azure API for FHIR and the open source backed by Azure Cosmos DB, there's a limitation where each subquery required for the chained and reverse chained searches only return 1,000 items. If more than 1,000 items found, you receive the following error message: "Subqueries in a chained expression can't return more than 1,000 results, please use a more selective criteria." A successful query needs to be specific regarding what you are looking for.
0 commit comments