Learning Flux instead of influxQL for external Query? Clients?

Hello @Pete0815,
I’m sorry I’m having trouble understanding what exactly it is that you want to do?
If you want to query the last month of data all you have to do is:

from(bucket: "my-bucket")
  |> range(start: -1mo)

If this isn’t what you want, here is a complete list of Flux functions for manipulating timestamps and time with influxdb:

As for tools to query influxDB. I highly recommend using the InfluxDB UI and the Query Builder.

Can you explain a little more what you’re looking to do?

Thank you