Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core/query): remove influxql support #195 #196

Merged
merged 2 commits into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

1. [#186](https://github.com/influxdata/influxdb-client-js/pull/186): Allow to create parameterized queries using flux tagged template.
1. [#191](https://github.com/influxdata/influxdb-client-js/pull/191): Update APIs from swagger as of 2020-05-27
1. [#196](https://github.com/influxdata/influxdb-client-js/pull/196): Remove influxql option from Query API

### Documentation

Expand Down
14 changes: 1 addition & 13 deletions packages/core/src/QueryApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,7 @@ export interface QueryOptions {
/**
* Type of the query, default is "flux"
*/
type?: 'influxql' | 'flux'
/**
* Required only for "influxql" queries.
*/
cluster?: string
/**
* Required only for "influxql" queries.
*/
db?: string
/**
* Required only for "influxql" queries.
*/
rp?: string
type?: 'flux'
/**
* Requests gzip encoded response.
*/
Expand Down