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

What is the output of $unwind when the field is a non-array scalar value?

// doc: { _id: 1, color: "red" } db.coll.aggregate([{ $unwind: "$color" }])