Universal filter #164
dzialdowski
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to create an universal filter, where we give universal function, defined as
(row: Row) => boolean
, just like basic javascript[].filter()
method argument?My use case is to have simple check, where one value in one column differs from value in another column, but I don't see any way to do something like
(row) => {return row.idA != row.idB}
This feature would allow us to implement basically any conditions we want, including previously mentioned one.
Beta Was this translation helpful? Give feedback.
All reactions