Advertisement
Guest User

Untitled

a guest
May 30th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. {
  2. firstName: Bob,
  3. lastName: Jerry
  4. }, {
  5. firstName: Clark,
  6. lastName: Mcbobby
  7. }
  8.  
  9. User.aggregate({
  10. $project: { "name" : { $concat : [ "$firstName", " ", "$lastName" ] } },
  11. $match: {"name": {$regex: "/bob j/i"}}
  12. }).exec(function(err, results) {
  13. ...
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement