pubkey / rxdb

A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
https://rxdb.info/
Apache License 2.0
21k stars 1.02k forks source link

Docs question: col.query() undocumented? #113

Closed rdworth closed 7 years ago

rdworth commented 7 years ago

Case

Docs question

Issue

Not sure why .query() is now undocumented (as of 9b4f838481bfd3344f7192b81bff27bbab8c2d91) if it still exists. I encountered it in the VanillaJS example (https://github.com/pubkey/rxdb/blob/master/examples/vanilla/main.js#L62) and wasn't sure what it did since I hadn't seen it in the docs. Went looking for it in https://github.com/pubkey/rxdb/blob/master/docs/RxCollection.md and saw that it had recently been removed.

What's the story? Thanks.

pubkey commented 7 years ago

Hi @rdworth query() was removed since it does exactly the same as find(). I pushed 290f88f which removes the remaining usage.