I am actually working with the Azure Data Factory, So my aim is to run the pipeline from the specified start and end date.
So for that, I am using the Tumbling Window trigger for triggering the pipeline.
Code:
(trigger().outputs.windowStartTime and trigger().outputs.windowEndTime),
Error:
The expression 'trigger().outputs.windowStartTime' cannot be evaluated because property 'windowStartTime' doesn't exist, available properties are 'headers, body'.
Question
How can I pass the Tumbling Window parameters to a Data Factory pipeline in the Data Factory UI?




