$getMonth

$getMonth operator returns you the month of the date. You can use this in any Expression Object

Syntax

{
    "$getMonth": [<date_like_obj>]
}

Properties

FieldDescriptionRequired

<date_like_obj>

The <date_like_obj> expression can be any valid expression as long as it resolves to datetime objects. It can also be a Magical Autocomplete.

true

Returns

integer - The month of the date provided

Examples

Basic Example

{
    "$getMonth": ["2025-03-20 00:00:00"]
}

The above expression returns 3

With Magical Autocomplete

Let's say we have declared a variable temp of type datetime which has value of 2025-03-20 00:00:00 currently.

{
    "$getMonth": [ "$.variables.temp" ]
}

The above expression would resolve to a result of 3

Last updated