Skip to content

Instantly share code, notes, and snippets.

@mpfund
Created August 14, 2014 23:44
Show Gist options
  • Save mpfund/cdf0caf7e7603fb3d31b to your computer and use it in GitHub Desktop.
Save mpfund/cdf0caf7e7603fb3d31b to your computer and use it in GitHub Desktop.
mongodb aggregate + group
{ $project:{RequestedUrl:1,BodyInputs:1} },
{ $unwind:"$BodyInputs" },
{ $group : {_id:"$BodyInputs",RequestedUrl:{$push:"$RequestedUrl"}} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment