forked from FoundKeyGang/FoundKey
[Server] Fix query performance
This commit is contained in:
parent
a9a763f8c4
commit
d96762cbac
1 changed files with 2 additions and 2 deletions
|
@ -50,13 +50,13 @@ module.exports = (params, user) =>
|
|||
|
||||
// Construct query
|
||||
const sort = {
|
||||
created_at: -1
|
||||
_id: -1
|
||||
};
|
||||
const query = {
|
||||
user_id: user._id
|
||||
};
|
||||
if (since !== null) {
|
||||
sort.created_at = 1;
|
||||
sort._id = 1;
|
||||
query._id = {
|
||||
$gt: new mongo.ObjectID(since)
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue