Arik Fraimovich
Arik Fraimovich
On a list page (queries, dashboards) when you select tags, it doesn't reflect in the URL. Making it impossible to share the current list you're viewing. The desired behavior should...
If a query has large result (~50K rows) it will make the UI to get stuck. We need to detect large results sets and handle them differently (server side pagination?).
- Each query should link to its parent, in case it's a fork of an existing query. - When changing a query, store last N versions and let the user...
Today to make a parameter optional, the user needs to have a workaround in the query logic itself. For example: ```sql select count(0) from queries where 'All' = '{{org_id}}' or...
Today the drill down possibilities in Redash are very limited. Practically you can only create drill downs from a Table visualization utilizing the Link column type. To have wider range...
As an extension of #1511, maybe we should hide the query description on dashboard widgets? This will give an outlet for users to describe their queries, without cluttering their dashboards....
Given a query with parameter `{{x}}` if the title has `{{x}}` in it, it will be replaced with the parameter value. If no value is provided, the parameter name will...
- [ ] GraphQL query runner - [ ] Update code editor to support GraphQL syntax
Currently flask-sqlalchemy will call `session.remove()` when `app.teardown_appcontext` is called. Because application contexts can be stacked, it means that we will remove the session when the inner most application context is...