delight-im / Android-DDP

[UNMAINTAINED] Meteor's Distributed Data Protocol (DDP) for clients on Android
Apache License 2.0
274 stars 54 forks source link

Is it possible to get a MongoDB database from the Meteor connection? #143

Closed jahirfiquitiva closed 7 years ago

jahirfiquitiva commented 7 years ago

If so, how?

ocram commented 7 years ago

Meteor does not permit direct database access over the protocol for good reasons.

All you can do is communicate with custom methods that you can define on your server, which gives you all the power you need. Apart from that, manipulating collections as shown in the README works as well, of course.