Currently I’m making a query (via the golang client) to my InfluxDB 2.0 database by creating a giant string that is mostly static. However, there are some elements - like names or timestamps - that I have to enter in by appending the main string with another name
string, which itself is constructed using multiple strings joined together.
Is there a way to parametrically ‘build’ a query other than using strings to do so? That is, does the golang influxdb 2.0 library support the construction of a query via parameters, rather than a big string?