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"
});