Configuration
- Value — the literal you want to emit. The editor renders the right input control for the chosen type.
- Value type — pick
string,integer,float,boolean,date,datetime,date range, or any of the enum types. The stored value is cast to this type at run time. - Is list — when
true, the value is treated as a list rather than a single value.
Date ranges
Adate range constant emits an inclusive period. Leave either bound empty
to leave that end open — 2024-01-01 with no end date means “from
2024-01-01 onwards”.
Wire one into Switch’s check port to branch on whether a date falls in
the period, or turn on Is list and wire the list into In List to test
a date against several periods at once. Range bounds entered here are whole
days; for an intra-day window (a shift, a punch window) build the range with
the Date Range node instead, which keeps whatever precision its inputs
carry.