davidgtonge / backbone_query

A lightweight query api for Backbone Collections
MIT License
378 stars 29 forks source link

multiple queries against same key in array no longer working (backbone version ~1) #19

Open justinshea opened 8 years ago

justinshea commented 8 years ago

The following example from .readme will not return any results. Are there any plans to update this library so it is compatible with latest versions of backbone???

Thanks, Justin

MyCollection.query({
    $or:[
        {title:"News"},
        {title:"About"}
    ]
});
// Returns all models with the title "News" or "About"

``