Filtering again from a fetched collection?

hey guys,

Was wondering if there is anyway to filter a collection again after has find().fetch() been called?

Thanks!

You can use underscore to filter the fetched array as much as you want, but note it will be limited by the initial find(). If you mean you want to filter the whole collection, hold a reference to the find() cursor rather than the fetched array.

1 Like

Thanks! That worked. Appreciate it! :slight_smile: