Skip to content

Instantly share code, notes, and snippets.

@hiwllc
Created January 1, 2017 20:46
Show Gist options
  • Save hiwllc/64215fb903ab600178f8454c07efc77f to your computer and use it in GitHub Desktop.
Save hiwllc/64215fb903ab600178f8454c07efc77f to your computer and use it in GitHub Desktop.
Group data in MongoDB

Pegando dados do banco usando $group

db.plantas.aggregate({
  $group: {
    _id: "$jardineiro",
    plantas: { $push: "$nome" }
  }
})

// Output

[
  {_id: 'Jardineiro 1', plantas: ['Nome da planta', 'Nome da outra planta']},
  {_id: 'Jardineiro 2', plantas: ['Nome da planta do jardineiro 2']}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment