- Reference >
- Operators >
- Aggregation Pipeline Operators >
- $week (aggregation)
$week (aggregation)¶
On this page
Definition¶
-
$week¶ Returns the week of the year for a date as a number between 0 and 53.
Weeks begin on Sundays, and week 1 begins with the first Sunday of the year. Days preceding the first Sunday of the year are in week 0. This behavior is the same as the “
%U” operator to thestrftimestandard library function.The
$weekexpression 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 dateThe date to which the operator is applied. <dateExpression>must be a valid expression that resolves to a Date, a Timestamp, or an ObjectID.timezoneOptional.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 notimezoneis provided, the result is displayed inUTC.Format Examples Olson Timezone IdentifierUTC Offset
Behavior¶
| Example | Result |
|---|---|
| 0 | |
| 1 | |
| 33 | |
| 44 | |
| 43 | |
error |
|
error |
|
error |
Note
$week cannot take a string as an argument.