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
Right now it seems that you can only do exact string matches. It would be great to be able to do fuzzy and partial searching either with regular expressions or with a string.contains kind of search similar to $regex and $text in mongodb.
This will be especially helpful in query on can-fixture stores.
The text was updated successfully, but these errors were encountered:
@dbleier yes that. Though you'll have to make something like:
myProp: {$text: "abc"} work instead of:
myProp: "abc"
If this can't be figured out, I can probably show sometime this week, if not this week, when I'm back from PTO on Monday.
Regarding including it as part of the standard package ... I'm wary of including it in can-query-logic itself. We've been trying to slim down CanJS. However, putting it in an export that can be mixed in would be great:
Right now it seems that you can only do exact string matches. It would be great to be able to do fuzzy and partial searching either with regular expressions or with a
string.contains
kind of search similar to$regex
and$text
in mongodb.This will be especially helpful in query on can-fixture stores.
The text was updated successfully, but these errors were encountered: