Skip to content
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

unexpected wildcard behaviour in like/ilike operator [mongo] #298

Open
simnado opened this issue Sep 12, 2024 · 0 comments
Open

unexpected wildcard behaviour in like/ilike operator [mongo] #298

simnado opened this issue Sep 12, 2024 · 0 comments

Comments

@simnado
Copy link

simnado commented Sep 12, 2024

by now querying entities with LIKE or iLIKE operator will always get the same results no matter if wildcards are set at the beginning or end. (e.g. {like: 'test'} and {like: '%test%'})

I would rather expect to get regex build with line anchors like escapeRegExp(^${String(val)}$).replace(/%/g, '.*') instead of:

const regExpStr = escapeRegExp(`${String(val)}`).replace(/%/g, '.*')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant