Since ObjectId contains datetime so i was using _id to filter records by date range.
like
{
"_id" : {
"$gte" : ObjectId("5aeed1be0000000000000000"),
"$lte" : ObjectId("5aeed1be0000000000000000"),
}
}
Now i would like to apply pagination too by _id for fast pagination i am preventing the use of skip.
is that possible for me to add another $gte or $lte filter on _id field.
thanks.