Hello,
I hope that someone has the response. I would like to use flux for querying data with defined variables. I found that there is bind_params but it doesn’t work for me since query client doesn’t accept double params.
query_text = 'select * from TEST_MEASUREMENT where app=$app_val limit 10'
input_dict = {'app_val':'AddressLookup'}
source_results = source_client.query(query_text,bind_params=input_dict)
Thank you in advance.