glynnbird commented on issue #360:
URL: https://github.com/apache/couchdb-nano/issues/360#issuecomment-3406220936

   It seems to work for me:
   
   ```js
   const Nano = require('nano')
   const nano = Nano(process.env.COUCH_URL)
   
   async function main() {
   
     const db = nano.use('cities')
     db.findAsStream({ selector: { country: 'US', population: { '$gt': 5000000 
} }}).pipe(process.stdout)
   
   }
   main()
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to