```js items.ensureIndex({ type: 1 }); items.explain({ type: { $eq: 1 } //index not used }) items.explain({ type: 1 //index used }) ```