I create a collection with 8 documents, i want to query my releasedTime
, here is my structure:
I try this query first , i can get the object movie data
db.collection.find({}, {movie: 1})
I don't know what to do next. I try this query:
db.collection.find({}, {movie.film: 1})
I suppose i will get film object data but its not working.
If i want to get all of my documents releasedTime data, what is the correct query ?
Any help would be appreciated. Thanks in advance.
