I have developed a plugin in which a query result is received by the plugin. I get the result of the query and process it. Now, I am going to change some of query parameter from the plugin.
The query is a Postgres raw query. Something like this:
SELECT a, b, c FROM test_table WHERE time > '1234567890'
How can I do this?
Should I use QueryEditorProps? how?
Should I use variables? how?