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

Given this document, what does the $unwind stage output?

// doc: { _id: 1, tags: ["a", "b", "c"] } db.coll.aggregate([ { $unwind: "$tags" } ])