Simple SQL query filter on topic browse
Whilst javascript filters does allow you to do what is needed, for end users not conversant in javascript, especially less technical business operations etc. it would be good to provide an SQL query abililty which is more widely understood language to work with data (akin to lenses sql query) this could be a initially a simple overlay that just converts under the hood to javascript.
(note at present it seems only partition and offset available in javascript to query, it be good to expose all the record meta data to query on, e.g. timestamp etc)
e.g.
SELECT * FROM
could be coded into:
return partition == 2 && offset == 37580
or
SELECT * FROM
return value.fieldA == 2 && value.fieldB == 37580
using value to mean the record value, key to mean record key, headers etc. etc,
later improvement could be to return only what is selected, rather than just true/false predicate, e.g. the select can enable to return sub part of data to reduce data on screen, but that could always be a later addition
We can merge this ask into #274
Perhaps unique enough that we can keep the ideas separate.