Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

MongoDB $size Operator

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

MongoDB provides different types of array expression operators that are used in the aggregation pipeline stages and $size operator is one of them. This operator is used to find the total number of elements present in the specified array.

Syntax: 

{ $size: <expression> }

Here, the given arguments must be a valid expression until it resolves to an array. If the argument of this operator is missing or the argument does not resolve to an array, then this operator will give errors.

 Examples:

In the following examples, we are working with:

Database: GeeksforGeeks

Collection: arrayExample

Document: three documents that contain the details in the form of field-value pairs.

Using $size Operator:

In this example, we are going to find the size of the number1 field( whose value is an array) using a $size operator. 

db.arrayExample.aggregate([
... {$match: {name: "Lolo"}},
... {$project: {number1Size: {$size: "$numbers1"}}}])

Using $size Operator in the Embedded Document:

In this example, we are going to find the size of the favGame.indoorGames field( whose value is an array) using a $size operator. 

db.arrayExample.aggregate([
... {$match: {name: "Piku"}},
... {$project: {resultSize: {$size: "$favGame.indoorGames"}}}])

My Personal Notes arrow_drop_up
Last Updated : 01 Aug, 2020
Like Article
Save Article
Similar Reads