suedschwede commented on issue #13476: URL: https://github.com/apache/superset/issues/13476#issuecomment-794076830
We want to give our customer the possibility to define their own REST APIs to fetch data The API call should be as simple as possible e.g.: https://hostname/superset?id=3&offset=0&limit=10 We can transform the REST Call on our API Gateway to ``` { "datasource": { "id": 3, "type": "table" }, "queries": [ { "row_limit": 10, "row_offset": 1 } ], "result_format": "json", "result_type": "results" } ``` I don't want to enumerate every coumn in the Rest Call. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
