Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit f91304b

Browse files
committed
fix(msg): support raw cursor results using OP_MSG
1 parent 46b0a83 commit f91304b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/connection/msg.js

+9
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ class BinMsg {
209209
this.index = 4;
210210
// Allow the return of raw documents instead of parsing
211211
const raw = options.raw || false;
212+
const documentsReturnedIn = options.documentsReturnedIn || null;
212213
const promoteLongs =
213214
typeof options.promoteLongs === 'boolean' ? options.promoteLongs : this.opts.promoteLongs;
214215
const promoteValues =
@@ -238,6 +239,14 @@ class BinMsg {
238239
}
239240
}
240241

242+
// TODO: This is special-cased in the OP_RESPONSE code, but should probably
243+
// be moved into Cursor logic.
244+
if (this.documents.length === 1 && documentsReturnedIn != null && raw) {
245+
_options.fieldsAsRaw = { [documentsReturnedIn]: true };
246+
const doc = this.bson.deserialize(this.documents[0], _options);
247+
this.documents = [doc];
248+
}
249+
241250
this.parsed = true;
242251
}
243252
}

0 commit comments

Comments
 (0)