ozomer / node-red-contrib-mongodb2

MongoDB driver node for Node-RED
Apache License 2.0
15 stars 19 forks source link

projection not implemented? #8

Closed JonSilver closed 7 years ago

JonSilver commented 7 years ago

Is there any way to selectively include/exclude document properties in the query results?

JonSilver commented 7 years ago

It's ok, I found how to include a projection in the query.

Just in case anyone else has difficulty finding how it works: msg.payload = [{ 'firstname' : 'Cedric' }, {"firstname": 1, "lastname": 1, "_id": 0}];