Skip to content

Commit 43e3dac

Browse files
committed
[db] count with query
1 parent c3de01a commit 43e3dac

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

plugins/pluginManager.js

+10
Original file line numberDiff line numberDiff line change
@@ -1751,6 +1751,11 @@ var pluginManager = function pluginManager() {
17511751
logDbRead.d("aggregate " + collection + " %j %j" + at, query, options);
17521752
logDbRead.d("From connection %j", countlyDb._cly_debug);
17531753
var cursor = this._aggregate(query, options);
1754+
cursor._count = cursor.count;
1755+
cursor.count = function() {
1756+
arguments.unshift(query);
1757+
return ob.countDocuments.apply(ob, arguments);
1758+
};
17541759
cursor._toArray = cursor.toArray;
17551760
cursor.toArray = function(cb) {
17561761
return handlePromiseErrors(cursor._toArray(logForReads(cb, e, copyArguments(args, "aggregate"))), e, copyArguments(arguments, "aggregate"));
@@ -1796,6 +1801,11 @@ var pluginManager = function pluginManager() {
17961801
logDbRead.d("find " + collection + " %j %j" + at, query, options);
17971802
logDbRead.d("From connection %j", countlyDb._cly_debug);
17981803
var cursor = this._find(query, options);
1804+
cursor._count = cursor.count;
1805+
cursor.count = function() {
1806+
arguments.unshift(query);
1807+
return ob.countDocuments.apply(ob, arguments);
1808+
};
17991809
cursor._toArray = cursor.toArray;
18001810
cursor.toArray = function(callback) {
18011811
return handlePromiseErrors(cursor._toArray(logForReads(callback, e, copyArguments(args, "find"))), e, copyArguments(arguments, "find"));

0 commit comments

Comments
 (0)