MongoDB introduced Change Stream technology with the release of version 3.6 in 2018. Change Streams are a fancy way to notify about operations performed on some collection or even database. The ChangeStreamEvent document contains data about operation type (insert, drop, etc.), collection name, and other info.
In this article, I describe…