mongodb-cross-cursor
Advanced tools
Comparing version
@@ -1,2 +0,2 @@ | ||
import { Document, FindCursor, WithId, MongoClient } from "mongodb"; | ||
import { Document, FindCursor, MongoClient } from "mongodb"; | ||
declare type SharedCursor = { | ||
@@ -13,3 +13,3 @@ cursorId: string; | ||
constructor(sharedCursor: SharedCursor, client: MongoClient, namespace: string, collection: string, batchSize?: number); | ||
static initiate(find: FindCursor<WithId<Document>>): Promise<MongoCrossCursor>; | ||
static initiate(find: FindCursor<Document>): Promise<MongoCrossCursor>; | ||
next(): Promise<unknown[]>; | ||
@@ -16,0 +16,0 @@ iterate(): AsyncGenerator<unknown, void, unknown>; |
@@ -44,2 +44,5 @@ "use strict"; | ||
} | ||
if (builtOptions.projection) { | ||
_commandOptions.projection = builtOptions.projection; | ||
} | ||
const cmd = yield db.command(_commandOptions, { | ||
@@ -62,3 +65,3 @@ session: (0, utils_1.fakeSessionBuilder)(sessionId) | ||
collection: this.collection, | ||
batchSize: this.batchSize | ||
batchSize: this.batchSize, | ||
}, { | ||
@@ -65,0 +68,0 @@ session: (0, utils_1.fakeSessionBuilder)(this.sharedCursor.sessionId) |
{ | ||
"name": "mongodb-cross-cursor", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"author": "Baptiste Jamin <baptiste@crisp.chat> (https://crisp.chat)", | ||
@@ -5,0 +5,0 @@ "description": "A mongodb driver extension allowing to consume MongoDB cursors accross multiple instances", |
Sorry, the diff of this file is not supported yet
16236
1.22%199
1.53%