$getMinute
Last updated
$getMinute operator returns you the minute of the datetime. You can use this in any Expression Object
{
"$getMinute": [<datetime_like_obj>]
}<datetime_like_obj>
The <datetime_like_obj> expression can be any valid expression as long as it resolves to datetime objects. It can also be a Magical Autocomplete.
true
integer - The minute of the datetime provided
{
"$getMinute": ["2024-07-17 06:34:53"]
}The above expression returns 34
Let's say we have declared a variable temp of type datetime which has value of 2024-07-17 06:34:53 currently.
The above expression would resolve to a result of 34
Last updated
{
"$getMinute": [ "$.variables.temp" ]
}