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
I understand that there is a slowdown in maintenance, and there is an internal debate about the possibility of handing over the maintenance to someone else. This is however a serious little bugger that could really use a release on npm.
According to the docs:
It doesn't state that seaching within a field (
:
) should be case-sensitive.Looking at for example the jsonapi-store-relationaldb handler, you can see that the
:
filter is actually case insensitive.Searching with the mongodb handler should also be case-insensitive, because the behavior of filters should be identical between storage providers.
A workaround is to query all possible cases and merge the search results:
?filter[title]=:for
?filter[title]=:For
?filter[title]=:FOR
The offending line is this:
jsonapi-store-mongodb/lib/mongoHandler.js
Line 70 in eaf0c47
I will provide a PR below.
The text was updated successfully, but these errors were encountered: