We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NOT
const data = [ { name: 'C-3PO' , description: 'Protocol droid.' , species: 'Droid' }, { name: 'R2-D2' , description: 'Astromech droid built on Naboo.', species: 'Droid' }, { name: 'Anakin Skywalker', description: 'Fallen Jedi, the chosen one.' , species: 'Human' }, { name: 'Obi-Wan Kenobi' , description: 'Jedi Master.' , species: 'Human' }, { name: 'Moon Moon' , description: 'Mentally challenged wolf.' , species: 'Wolf' }, ]; console.log(data.filter(lucene('NOT anakin')));
Expected: All items except Anakin
Current result: Shows just Anakin. I.e. it ignores the "NOT" clause.
The text was updated successfully, but these errors were encountered:
A separate NOT operator has never been implemented. It should be and will be as soon as I get the chance to rewrite this library
Sorry, something went wrong.
finwo
No branches or pull requests
Expected: All items except Anakin
Current result: Shows just Anakin. I.e. it ignores the "NOT" clause.
The text was updated successfully, but these errors were encountered: