Skip to content

Instantly share code, notes, and snippets.

@Unitech
Created October 21, 2014 10:50
Show Gist options
  • Save Unitech/020e8d8710449455e7ac to your computer and use it in GitHub Desktop.
Save Unitech/020e8d8710449455e7ac to your computer and use it in GitHub Desktop.
Person
.find({ occupation: /host/ })
.where('name.last').equals('Ghost')
.where('age').gt(17).lt(66)
.where('likes').in(['vaporizing', 'talking'])
.limit(10)
.sort('-occupation')
.select('name occupation')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment