- Reference >
- Operators >
- Aggregation Pipeline Operators >
- $isoDayOfWeek (aggregation)
$isoDayOfWeek (aggregation)¶
On this page
Definition¶
-
$isoDayOfWeek¶ Returns the weekday number in ISO 8601 format, ranging from
1(for Monday) to7(for Sunday).The
$isoDayOfWeekexpression 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 |
|---|---|
| 5 | |
| 2 | |
| 7 | |
| 6 | |
| 5 | |
error |
|
error |
|
error |
Note
$isoDayOfWeek cannot take a string as an argument.
Example¶
A collection called birthdays contains the following documents:
The following operation returns the weekday number for each
birthday field.
The operation returns the following results: