You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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:nestjs-query/packages/query-mongoose/src/query/comparison.builder.ts
Line 100 in 8520f18
The text was updated successfully, but these errors were encountered: