Skip to content

Added drop type to change stream options #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions source/change-streams/change-streams.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Change Streams
:Status: Accepted
:Type: Standards
:Minimum Server Version: 3.6
:Last Modified: June 14, 2018
:Last Modified: July 27, 2018
:Version: 1.5.1

.. contents::
Expand Down Expand Up @@ -101,7 +101,7 @@ If the aggregation with ``$changeStream`` specified completes successfully, the
/**
* Describes the type of operation represented in this change notification.
*/
operationType: "insert" | "update" | "replace" | "delete" | "invalidate";
operationType: "insert" | "update" | "replace" | "delete" | "invalidate" | "drop";

/**
* Contains two fields: “db” and “coll” containing the database and
Expand Down Expand Up @@ -601,3 +601,5 @@ Changelog
+------------+------------------------------------------------------------+
| 2018-06-14 | Clarified how to calculate ``startAtOperationTime`` |
+------------+------------------------------------------------------------+
| 2018-07-27 | Added drop to change stream operationType |
+------------+------------------------------------------------------------+