Introduction
Covered queries help MongoDB find data quickly by using only the index without looking at the full documents.
When you want to speed up read operations on a collection.
When you only need a few fields from documents, not the whole document.
When you want to reduce the amount of data MongoDB reads from disk.
When you want to improve performance for frequent queries on specific fields.