QueryResponse Class
Query result.
All required parameters must be populated in order to send to Azure.
- Inheritance
-
msrest.serialization.ModelQueryResponse
Constructor
QueryResponse(*, total_records: int, count: int, result_truncated: str | ResultTruncated, data: object, skip_token: str | None = None, facets: List[Facet] | None = None, **kwargs)
Parameters
Name | Description |
---|---|
total_records
Required
|
<xref:long>
Required. Number of total records matching the query. |
count
Required
|
<xref:long>
Required. Number of records returned in the current response. In the case of paging, this is the number of records in the current page. |
result_truncated
Required
|
Required. Indicates whether the query results are truncated. Possible values include: "true", "false". |
skip_token
Required
|
When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. |
data
Required
|
Required. Query output in JObject array or Table format. |
facets
Required
|
Query facets. |
Keyword-Only Parameters
Name | Description |
---|---|
total_records
Required
|
|
count
Required
|
|
result_truncated
Required
|
|
data
Required
|
|
skip_token
Required
|
|
facets
Required
|
|
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Python