Не, не:
Ето прост пример:
> db.test.insert({a:[1]})
> db.test.insert({})
> db.test.aggregate({$unwind:'$a'})
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : 1 }
// no error -- but unwind only the document having the `a` field.
Но:
> db.test.insert({a:2})
> db.test.aggregate({$unwind:'$a'})
// will result in error 15978:
// """Value at end of $unwind field path '$a' must be an Array,
// but is a NumberDouble"""
Според вашата редакция, ако трябва да запазите документи с липсващи поле за отвиване, можете да $project
стойност по подразбиране с помощта на $ifNull
:
> db.test.find()
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : [ 1 ] }
{ "_id" : ObjectId("557362a57b97d77c38793c22") }
> db.test.aggregate([
{$project: { a: { $ifNull: ['$a', [ null ]]}}},
{$unwind: "$a"}
])
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : 1 }
{ "_id" : ObjectId("557362a57b97d77c38793c22"), "a" : null }