Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. //Push a item in a array
  2. db.alura.update(
  3. {"_id":ObjectId("5c8fabfae0e83c54895c973f")},
  4. {
  5. $push:{
  6. "cursos":{
  7. "nome":"convecao",
  8. "habilidade":"dificil"
  9. }
  10. }
  11. }
  12.  
  13. )
  14.  
  15. //Push many items in a array
  16. db.alura.update(
  17. {"_id":ObjectId("5c8fabfae0e83c54895c973f")},
  18. {
  19. $push:{
  20. "cursos": {
  21. $each:[
  22. {
  23. "nome":"sukita",
  24. "habilidade":"facil"
  25. },
  26. {
  27. "nome":"dolly",
  28. "habilidade":"dificil"
  29. }
  30. ]
  31. }
  32. }
  33. }
  34.  
  35. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement