-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible to ignore certain fields? #14
Comments
I didn't know about the default thing with require. Since then I've learned about some better ways to build from TS to JS, when I get around to using it here it should help on things like this In the case: const result = filter.search('1 not(_id:1)') Right now, the best way to ignore certain fields would be to filter then while instantiating |
Not sure if it's even an option to filter out the IDs as they are needed
when i want to attach click handlers and such.
…On Sat, Apr 29, 2023, 20:20 Bruno Noriller ***@***.***> wrote:
I didn't know about the default thing with require. Since then I've
learned about some better ways to build from TS to JS, when I get around to
using it here it should help on things like this
In the case:
const result = filter.search('1 not(_id:1)')
Right now, the best way to ignore certain fields would be to filter then
while instantiating filter.
—
Reply to this email directly, view it on GitHub
<#14 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAD2UVR77HRWOSG4QHW2HLLXDVLXDANCNFSM6AAAAAAXO6RKSA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sorry, you're right. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to ignore certain fields? Eg. in this example, both records are matched as the
_id
matches1
:Also note that you'll have to use
EasyFilter.default
when using require. Not sure if that's expected or not.The text was updated successfully, but these errors were encountered: