Low code platform for building business apps and workflows in minutes. Supports PostgreSQL, MySQL, MariaDB, MSSQL, MongoDB, Rest API, Docker, K8s, and more 🚀
Describe the feature request
Currently when using the Export Data app-action, only table (data sources) can be used when exporting from (component) tables.
In ButtonActions.js we can see that both a tableID and a selection of rows must be specified in order to export the data. Queries to not have a tableID.
Rough steps to replicate for testing
export to CSV the sample data employees table
Add a connection to (for example) an MS_SQL data source
Create a table in the MS SQL, and populate it with the column names from the employees table
Describe the feature request Currently when using the Export Data app-action, only table (data sources) can be used when exporting from (component) tables.
In ButtonActions.js we can see that both a tableID and a selection of rows must be specified in order to export the data. Queries to not have a tableID.
Rough steps to replicate for testing
SELECT * FROM employees WHERE [First Name] LIKE 'Suzy';