- Reference >
- Operators >
- Query and Projection Operators >
- Projection Operators >
- $elemMatch (projection)
$elemMatch (projection)¶
See also
On this page
Definition¶
-
$elemMatch¶ The
$elemMatchoperator limits the contents of an<array>field from the query results to contain only the first element matching the$elemMatchcondition.
Usage Considerations¶
Both the $ operator and the $elemMatch operator project
the first matching element from an array based on a condition.
The $ operator projects the first matching array element from each
document in a collection based on some condition from the query statement.
The $elemMatch projection operator takes an explicit condition
argument. This allows you to project based on a condition not in the query, or
if you need to project based on multiple fields in the array’s embedded documents.
See Array Field Limitations for an example.
db.collection.find() operations on views do not support $elemMatch projection operator.
- You cannot specify a
$textquery expression in an$elemMatch.
Examples¶
The examples on the $elemMatch projection operator
assumes a collection school with the following documents:
Zipcode Search¶
The following find() operation
queries for all documents where the value of the zipcode
field is 63109. The $elemMatch projection
returns only the first matching element of the students
array where the school field has a value of 102:
The operation returns the following documents:
- For the document with
_idequal to1, thestudentsarray contains multiple elements with theschoolfield equal to102. However, the$elemMatchprojection returns only the first matching element from the array. - The document with
_idequal to3does not contain thestudentsfield in the result since no element in itsstudentsarray matched the$elemMatchcondition.
$elemMatch with Multiple Fields¶
The $elemMatch projection can specify criteria on multiple
fields:
The following find() operation
queries for all documents where the value of the zipcode
field is 63109. The projection includes the first
matching element of the students array where the school
field has a value of 102 and the age field is greater
than 10:
The operation returns the three documents that have zipcode equal to 63109:
The document with _id equal to 3 does not contain the students field
since no array element matched the $elemMatch criteria.
See also
$ (projection) operator