Concept Flow - Covered queries with indexes
Query issued
Check index for fields
Index covers all query fields?
No→Fetch full document from collection
Yes
Return results directly from index
Query completes faster
The database checks if the index contains all fields needed by the query. If yes, it returns data from the index only, skipping the full document fetch.