Hari Haran R
09/25/2024, 4:03 PMuser
09/25/2024, 4:03 PMtoday_utc()
macro in Airbyte returns the current date in the UTC timezone. The output is a date object. Here are some examples of how you can use it: - '{{ today_utc() }}'
will return the current date in the format 'YYYY-MM-DD'. For example, '2021-09-01'. - '{{ today_utc().strftime('%Y/%m/%d')}}'
will return the current date in the format 'YYYY/MM/DD'. For example, '2021/09/01'. You can adjust the strftime argument to format the date in the way you need. Here is the source for this information: [Airbyte Documentation](https://docs.airbyte.com/connector-development/config-based/understanding-the-yaml-file/reference#macros)