Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumMongoDBchange streamsSingle-choice MCQ

What does this change stream pipeline accomplish, and what is the key behavioral consequence of the `fullDocument` option shown?

const pipeline = [ { $match: { operationType: "update" } } ]; const cs = db.orders.watch(pipeline, { fullDocument: "updateLookup" });