Last active
September 7, 2020 11:12
-
-
Save miguelangelnieto/6904a06397a7ce027f919f7e35e88da1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"queryPlanner" : { | |
"plannerVersion" : 1, | |
"namespace" : "test.names", | |
"indexFilterSet" : false, | |
"parsedQuery" : { | |
"$and" : [ | |
{ | |
"Name" : { | |
"$eq" : "Miguel" | |
} | |
}, | |
{ | |
"Age" : { | |
"$gt" : 34 | |
} | |
} | |
] | |
}, | |
"winningPlan" : { | |
"stage" : "SORT", | |
"sortPattern" : { | |
"Street" : 1 | |
}, | |
"inputStage" : { | |
"stage" : "SORT_KEY_GENERATOR", | |
"inputStage" : { | |
"stage" : "COLLSCAN", | |
"filter" : { | |
"$and" : [ | |
{ | |
"Name" : { | |
"$eq" : "Miguel" | |
} | |
}, | |
{ | |
"Age" : { | |
"$gt" : 34 | |
} | |
} | |
] | |
}, | |
"direction" : "forward" | |
} | |
} | |
}, | |
"rejectedPlans" : [ ] | |
}, | |
"serverInfo" : { | |
"host" : "Miguels-MacBook-Pro.local", | |
"port" : 27017, | |
"version" : "3.6.8", | |
"gitVersion" : "6bc9ed599c3fa164703346a22bad17e33fa913e4" | |
}, | |
"ok" : 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment