You should be able to view the raw SQL of a query behind a step (after running the step) if you want to.
This would require us to send the SQL to the client. Consider performance. Maybe we do this as a separate async endpoint like GET QueriesSQL so that we're not re-calling it a lot, or blocking the Flow from loading.
You should be able to view the raw SQL of a query behind a step (after running the step) if you want to.
This would require us to send the SQL to the client. Consider performance. Maybe we do this as a separate async endpoint like
GET QueriesSQLso that we're not re-calling it a lot, or blocking the Flow from loading.