<!-- Generated by box-gantry. DO NOT EDIT. -->
# QueryManager
Reach these methods through the `query` field on `client::Client`.
## query
`POST /query`
**Request body** (`application/json`): `QueryRequestBody`
**Returns:** `QueryResults`
**Example**
```rust
let result = client.query.query(schemas::QueryRequestBody { /* … */ }).await?;
```
## query_insights
`POST /query_insights`
**Request body** (`application/json`): `QueryInsightsRequestBody`
**Returns:** `QueryInsights`
**Example**
```rust
let result = client.query.query_insights(schemas::QueryInsightsRequestBody { /* … */ }).await?;
```