Hey All, I'm trying to create a flexible table, which the user is able to choose its columns, by selecting a checkbox tree
the approach is creating a database query by selecting the value of this checkbox tree, which is located in "tree1.checked",
but I can't use this as a value inside the database query:
SELECT {{tree1.checked}} FROM users
or
SELECT {{tree1.checked.join(',')}} FROM users
or even using a state value
SELECT {{state1.value}} FROM users
any advice?