Skip to content

relationalai.std.dates.minutes()

minutes(n: int|Producer) -> Expression

Creates a period of n minutes. Negative values are supported. If n is a Producer object, then minutes() also acts as a filter and removes non-integer values from the producer. Unlike years(), months(), or days(), minutes() can only be added or subtracted from datetime values. Must be called in a rule or query context.

NameTypeDescription
nProducer or Python intThe number of minutes.

An Expression object.

Use minutes() to create a period of n minutes. You can add and subtract time periods from datetime values using the + and - operators:

import relationalai as rai
from relationalai.std import alias, dates
# =====
# SETUP
# =====
model = rai.Model("MyModel")
Event = model.Type("Event")
with model.rule():
Event.add(id=1).set(start=dates.datetime(2021, 1, 1, 9, 30), duration_minutes=30)
Event.add(id=2).set(start=dates.datetime(2021, 2, 1, 9, 30), duration_minutes=-45)
Event.add(id=3).set(start=dates.date(2021, 3, 1), duration_minutes=60)
Event.add(id=4).set(start=dates.date(2021, 4, 1), duration_minutes="invalid")
# =======
# EXAMPLE
# =======
with model.rule():
event = Event()
# minutes() filters out any events with invalid start or duration_minutes values,
# so the following only sets the end property for Events 1 and 2. Event 3 is
# filtered out because its start property is a date value, while Event 4 has
# both an invalid start and duration_minutes value.
event.set(end=event.start + dates.minutes(event.duration_minutes))
# Since Event 3 and 4 are filtered out above, the following only sets the
# has_valid_start_and_duration property for Events 1 and 2.
event.set(has_valid_start_and_duration=True)
with model.query() as select:
event = Event()
response = select(event.id, event.end, event.has_valid_start_and_duration)
print(response.results)
# id end has_valid_start_and_duration
# 0 1 2021-01-01 10:00:00 True
# 1 2 2021-02-01 08:45:00 True
# 2 3 NaT NaN
# 3 4 NaT NaN

You can add minutes() to date values if you first convert them to datetime values using the datetime.fromdate() constructor:

# Alternative version of the rule in the preceding example that converts any date
# values produced by event.start to datetime values before adding the duration.
with model.rule():
event = Event()
duration_minutes = dates.minutes(event.duration_minutes)
with model.match():
# If event.start is a date, convert it to a datetime before adding the duration.
with model.case():
dates.Date(event.start)
date_as_time = dates.datetime.fromdate(event.start)
event.set(end=date_as_time + duration_minutes)
# Otherwise, add the duration without conversion.
with model.case():
event.set(end=event.start + duration_minutes)
with model.query() as select:
event = Event()
response = select(event.id, event.end)
# Event 4 is still filtered out, but Event 3 now has an end property.
print(response.results)
# id end
# 0 1 2021-01-01 10:00:00
# 1 2 2021-02-01 08:45:00
# 2 3 2021-03-01 01:00:00
# 3 4 NaT

Note that minutes() does not produce an integer value. In particular, you cannot do arithmetic with minutes() and numeric values:

with model.query() as select:
result = dates.minutes(30) / 60
response = select(result)
# Returns an empty result set because `minutes(30) / 60` is not a valid expression.
print(response.results)
# Empty DataFrame
# Columns: []
# Index: []