-
-
Notifications
You must be signed in to change notification settings - Fork 63
Interface.QueryResponse
Aleksandr Rogov edited this page May 12, 2025
·
2 revisions
dynamics-web-api / QueryResponse
Use QueryResponse instead
| Property | Type | Description | Inherited from |
|---|---|---|---|
@odata.context |
string |
- | - |
facets |
any |
If facets were requested in the query, a dictionary of facet values. Deprecated Use "response.Facets" instead. |
SearchResponse.facets
|
querycontext |
any |
This property is used for backend search. It's included for future feature releases and isn't currently used. Deprecated Use "response.QueryContext" instead. |
SearchResponse.querycontext
|
response |
object |
Query response | - |
response.Count |
number |
If "Count": true is included in the body of the request, the count of all documents that match the search, ignoring top and skip. | - |
response.Error |
null | SearchErrorDetail
|
Provides error information from Azure Cognitive search. | - |
response.Facets |
null | Record<string, SearchFacetResult[]> |
If facets were requested in the query, a dictionary of facet values. | - |
response.QueryContext |
null | SearchQueryContext
|
This property is used for backend search. It's included for future feature releases and isn't currently used. | - |
response.Value |
SearchQueryResult[] |
A collection of matching records. | - |
totalrecordcount |
number |
If "Count": true is included in the body of the request, the count of all documents that match the search, ignoring top and skip. Deprecated Use "response.Count" instead. |
SearchResponse.totalrecordcount
|
value |
SearchQueryResult[] |
A collection of matching records. Deprecated Use "response.Value" instead. |
SearchResponse.value
|