Table of Contents
Using dynamic tags in value fields for search filters
Table of Contents
Dynamic tags
In Flow, you can use the following dynamic tag in the search filter of input nodes.
-
{{utcnow.date}}
- Gives today's date in UTC
To add days to or subtract days from utcnow.date
, add the code +/-P{number of days}D
.
All dates are in UTC, so there is no support for time zones.
Example: Finding assets that have a release date (field 30) between today and the next four days
((IPTC030 CONTAINS ({{utcnow.date}}~~{{utcnow.date+P4D}})))
+P4D
adds four days to the current date. To subtract four days, use-P4D
instead.
For more information about dynamic tags, see Date and time tags in FotoWeb.