We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Proposal: It would be really nice to have a Flux DSL librairy for the go client; similarly to what exist for the Java client
Current behavior: With the current librairy I have to write the query as a string:
result, err := queryAPI.Query(context.Background(), `from(bucket:"my-bucket")|> range(start: -1h) |> filter(fn: (r) => r._measurement == "stat")`)
Desired behavior: It would be much better if I could chain operator with something like this:
q := queryAPI.Query(context.Background()).Bucket("my-bucket").Range("-1h").Filter("...") res, err := q.Execute()
Use case: Every time I need to write queries using the go client
The text was updated successfully, but these errors were encountered:
Thanks for using this library. Flux DSL is already on in the backlog. This could be added in a few months.
Sorry, something went wrong.
If needed, I can help and contribute ;)
Any PR is welcomed 👍
No branches or pull requests
Proposal:
It would be really nice to have a Flux DSL librairy for the go client; similarly to what exist for the Java client
Current behavior:
With the current librairy I have to write the query as a string:
Desired behavior:
It would be much better if I could chain operator with something like this:
Use case:
Every time I need to write queries using the go client
The text was updated successfully, but these errors were encountered: