//mongo sh
db.descriptions.find( {productId: {$gt : 9999990 } } ).explain("executionStats")
{
	"queryPlanner" : {
		"plannerVersion" : 1,
		"namespace" : "trailblazer.descriptions",
		"indexFilterSet" : false,
		"parsedQuery" : {
			"productId" : {
				"$gt" : 9999990
			}
		},
...
	},
	"executionStats" : {
		"executionSuccess" : true,
		"nReturned" : 10,
		"executionTimeMillis" : 1,
		"totalKeysExamined" : 10,
		"totalDocsExamined" : 10,
...
}