Name | Type | Description | Notes |
---|---|---|---|
collections | [str] | List of collections referenced in the query. | [optional] |
column_fields | [QueryFieldType] | Meta information about each column in the result set. Not populated in `SELECT *` queries. | [optional] |
last_offset | str | If this was a write query, this is the log offset the query was written to. | [optional] |
pagination | PaginationInfo | [optional] | |
query_errors | [QueryError] | Errors encountered while executing the query. | [optional] |
query_id | str | Unique ID for this query. | [optional] |
query_lambda_path | str | The full path of the executed query lambda. Includes version information. | [optional] |
results | [{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] | Results from the query. | [optional] |
results_total_doc_count | int | Number of results generated by the query. | [optional] |
stats | QueryResponseStats | [optional] | |
status | str | Status of query execution. Possible values: `QUEUED`, `RUNNING`, `COMPLETED`, `ERROR`. | [optional] |
warnings | [str] | [optional] | |
any string name | bool, date, datetime, dict, float, int, list, str, none_type | any string name can be used but the value must be the correct type | [optional] |