$filter (aggregation)
On this page
Definition
$filter- 
Selects a subset of an array to return based on the specified condition. Returns an array with only those elements that match the condition. The returned elements are in the original order.
$filterhas the following syntax:{ $filter: { input: <array>, cond: <expression>, as: <string>, limit: <number expression> } }Field Specification inputAn expression that resolves to an array. condAn expression that resolves to a boolean value used to determine if an element should be included in the output array. The expression references each element of the inputarray individually with the variable name specified inas.asOptional. A name for the variable that represents each individual element of the inputarray. If no name is specified, the variable name defaults tothis.limitOptional. A number expression that restricts the number of matching array elements that $filterreturns. You cannot specify a limit less than1. The matching array elements are returned in the order they appear in the input array.
If the specifiedlimitis greater than the number of matching array elements,$filterreturns all matching array elements. If the limit isnull,$filterreturns all matching array elements.For more information on expressions, see Expressions.
 
Behavior
| Example | Results | 
|---|---|
{
  $filter: {
     input: [ 1, "a", 2, null, 3.1, NumberLong(4), "5" ],
     as: "num",
     cond: { $and: [
        { $gte: [ "$$num", NumberLong("-9223372036854775807") ] },
        { $lte: [ "$$num", NumberLong("9223372036854775807") ] }
      ] }
  }
} | [ 1, 2, 3.1, NumberLong(4) ] | 
{
  $filter: {
     input: [ 1, "a", 2, null, 3.1, NumberLong(4), "5" ],
     as: "num",
     cond: { $and:[
        { $gte: [ "$$num", NumberLong("-9223372036854775807") ] },
        { $lte: [ "$$num", NumberLong("9223372036854775807") ] }
     ] },
     limit: 2
  }
} | [ 1, 2 ] | 
{
  $filter: {
     input: [ 1, "a", 2, null, 3.1, NumberLong(4), "5" ],
     as: "num",
     cond: { $and:[
        { $gte: [ "$$num", NumberLong("-9223372036854775807") ] },
        { $lte: [ "$$num", NumberLong("9223372036854775807") ] }
     ] },
     limit: { $add: [ 0, 1 ]}
  }
} | [ 1 ] | 
Examples
A collection sales has the following documents:
db.sales.insertMany( [ { _id: 0, items: [ { item_id: 43, quantity: 2, price: 10 }, { item_id: 2, quantity: 1, price: 240 } ] }, { _id: 1, items: [ { item_id: 23, quantity: 3, price: 110 }, { item_id: 103, quantity: 4, price: 5 }, { item_id: 38, quantity: 1, price: 300 } ] }, { _id: 2, items: [ { item_id: 4, quantity: 1, price: 23 } ] } ] )
The following example filters the items array to only include documents that have a price greater than or equal to 100:
db.sales.aggregate( [ { $project: { items: { $filter: { input: "$items", as: "item", cond: { $gte: [ "$$item.price", 100 ] } } } } } ] )
The operation produces the following results:
{
   "_id" : 0,
   "items" : [
      { "item_id" : 2, "quantity" : 1, "price" : 240 }
   ]
}
{
   "_id" : 1,
   "items" : [
      { "item_id" : 23, "quantity" : 3, "price" : 110 },
      { "item_id" : 38, "quantity" : 1, "price" : 300 }
   ]
}
{ "_id" : 2, "items" : [ ] }
Using the limit field
This example uses the sales collection from the previous example.
The example uses the limit field to specifiy the number of matching elements returned in each items array.
db.sales.aggregate( [ { $project: { items: { $filter: { input: "$items", cond: { $gte: [ "$$item.price", 100 ] }, as: "item", limit: 1 } } } } ] )
The operation produces the following results:
{
   "_id" : 0,
   "items" : [
      { "item_id" : 2, "quantity" : 1, "price" : 240 }
   ]
}
{
   "_id" : 1,
   "items" : [
      { "item_id" : 23, "quantity" : 3, "price" : 110 }
   ]
}
{ "_id" : 2, "items" : [ ] }
limit as a Numeric Expression
This example uses the sales collection from the previous example.
The following example uses a numeric expression for the limit field to specifiy the number of matching elements returned in each items array.
db.sales.aggregate( [ { $project: { items: { $filter: { input: "$items", cond: { $lte: [ "$$item.price", 150] }, as: "item", limit: 2.000 } } } } ] )
The operation produces the following results:
{
   "_id": 0,
   "items": [
      { "item_id": 43, "quantity": 2, "price": 10 }
   ]
},
{
   "_id": 1,
   "items": [
      { "item_id": 23, "quantity": 3, "price": 110 },
      { "item_id": 103, "quantity": 4, "price": 5 }
   ]
},
{
   "_id": 2,
   "items": [
      { "item_id": 4, "quantity": 1, "price": 23 }
   ]
}
limit Greater than Possible Matches
This example uses the sales collection from the previous example.
The example uses a limit field value that is larger than the possible number of matching elements that can be returned.
db.sales.aggregate( [ { $project: { items: { $filter: { input: "$items", cond: { $gte: [ "$$item.price", 100] }, as: "item", limit: 5 } } } } ] )
The operation produces the following results:
[
   {
      "_id": 0,
      "items": [
      { "item_id": 2, "quantity": 1, "price": 240 }
      ]
   },
   {
      "_id": 1,
      "items": [
         { "item_id": 23, "quantity": 3, "price": 110 },
         { "item_id": 38, "quantity": 1, "price": 300 }
      ]
   },
   {
      "_id": 2,
      "items": []
   }
]