Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumMongoDB$unwind arraysSingle-choice MCQ

Given $unwind on the 'tags' field, which documents survive when 'tags' is (a) an empty array, (b) missing, or (c) null, using the default $unwind (no options)?

db.posts.aggregate([ { $unwind: "$tags" } ])