You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The exclusive upper bound for a specific index */
48
48
max?: Document;
49
-
/** You can put a $comment field on a query to make looking in the profiler logs simpler. */
50
-
comment?: string|Document;
49
+
/**
50
+
* Comment to apply to the operation.
51
+
*
52
+
* In server versions <4.4, 'comment' must be string. A server
53
+
* error will be thrown if any other type is provided.
54
+
*
55
+
* In server versions >=4.4, 'comment' can be any valid BSON type.
56
+
*/
57
+
comment?: any;
51
58
/** Number of milliseconds to wait before aborting the query. */
52
59
maxTimeMS?: number;
53
60
/** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. Requires `tailable` and `awaitData` to be true */
0 commit comments