
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Pull an element in sub of sub-array in MongoDB?
To pull an element, use $pull along with $(positional) operator. Let us create a collection with documents −
> db.demo679.insertOne( ... { ... id:1, ... "details": [ ... { ... CountryName:"US", ... "information": [ ... ... { "Name": "Chris", "FirstName": "Name=Chris" }, ... ... {"Name": "Bob", "FirstName": "Name=Bob" } ... ] ... }, ... { ... CountryName:"UK", ... "information": [ ... ... { "Name": "Robert", "FirstName": "Name=Robert" }, ... ... {"Name": "Sam", "FirstName": "Name=Sam" } ... ] ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5ea442cf04263e90dac943fd") }
Display all documents from a collection with the help of find() method −
> db.demo679.find();
This will produce the following output −
{ "_id" : ObjectId("5ea442cf04263e90dac943fd"), "id" : 1, "details" : [ { "CountryName" : "US", "information" : [ { "Name" : "Chris", "FirstName" : "Name=Chris" }, { "Name" : "Bob", "FirstName" : "Name=Bob" } ] }, { "CountryName" : "UK", "information" : [ { "Name" : "Robert", "FirstName" : "Name=Robert" }, { "Name" : "Sam", "FirstName" : "Name=Sam" } ] } ] }
Following is the query to pull an element in sub of sub-array in MongoDB −
> db.demo679.update( ... { "details.CountryName":"US" }, ... { $pull: { 'details.$.information': { "Name" : "Bob", "FirstName" : "Name=Bob" } } } ... ); WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Display all documents from a collection with the help of find() method −
> db.demo679.find().pretty();
This will produce the following output −
{ "_id" : ObjectId("5ea442cf04263e90dac943fd"), "id" : 1, "details" : [ { "CountryName" : "US", "information" : [ { "Name" : "Chris", "FirstName" : "Name=Chris" } ] }, { "CountryName" : "UK", "information" : [ { "Name" : "Robert", "FirstName" : "Name=Robert" }, { "Name" : "Sam", "FirstName" : "Name=Sam" } ] } ] }
- Related Questions & Answers
- How do you limit an array sub-element in MongoDB?
- MongoDB query for capped sub-collection in an array
- Filter sub documents by sub document in MongoDB?
- How to add a sub-document to sub-document array in MongoDB?
- MongoDB query to remove element from array as sub property
- MongoDB query to set a sub item in an array?
- Updating sub-object in MongoDB?
- Find the MongoDB document from sub array?
- Finding an element in a sub-element in Selenium Webdriver.
- Working with MongoDB $sort for sub array document
- How to pull an array element (which is a document) in MongoDB?
- MongoDB query by sub-field?
- Sum MongoDB Sub-documents field?
- MongoDB filter multiple sub-documents?
- Removing an array element from MongoDB collection using update() and $pull
Advertisements