- Reference >
- Operators >
- Aggregation Pipeline Operators >
- $year (aggregation)
$year (aggregation)¶
On this page
Definition¶
-
$year
¶ Returns the year portion of a date.
The
$year
expression has the following operator expression syntax:The argument can be:
An expression that resolves to a Date, a Timestamp, or an ObjectID.
A document with this format:
Field Description date
The date to which the operator is applied. <dateExpression>
must be a valid expression that resolves to a Date, a Timestamp, or an ObjectID.timezone
Optional.
The timezone of the operation result.<tzExpression>
must be a valid expression that resolves to a string formatted as either an Olson Timezone Identifier or a UTC Offset. If notimezone
is provided, the result is displayed inUTC
.Format Examples Olson Timezone Identifier
UTC Offset
Behavior¶
Example | Result |
---|---|
2016 | |
2003 | |
2011 | |
1998 | |
1998 | |
error |
|
error |
|
error |
Note
$year
cannot take a string as an argument.