- Reference >
- Operators >
- Aggregation Pipeline Operators >
- $isoWeek (aggregation)
$isoWeek (aggregation)¶
On this page
Definition¶
-
$isoWeek
¶ Returns the week number in ISO 8601 format, ranging from
1
to53
. Week numbers start at1
with the week (Monday through Sunday) that contains the year’s first Thursday.The
$isoWeek
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 |
---|---|
1 | |
53 | |
32 | |
45 | |
44 | |
error |
|
error |
|
error |
Note
$isoWeek
cannot take a string as an argument.
Example¶
A collection called deliveries
contains the following documents:
The following operation returns the week number for each date
field.
The operation returns the following results: