Some days ago I opened a thread related to Office 365 Calendar trigger "On Event Starting Soon".
Since Flow staff confirmed there was a bug, I started working with the following workaround: Daily recurrence trigger followed by an Office 365 Calendar Get Events action block.
I'm trying to get just the events that starts the same day the script is executed, so I played with the following ODATA expression on Get Events Filter Query input:
date(Start_x0020_time) eq date(now())
When executing the script, however, it looks like the filter is not applying as I expected, so all events from target Calendar, no matter the "Start time" they have, are included as output.
I've also tried with the following Filter Query
contains(Subject,'prueba')
Taking into account some of the events I've currently programmed does not include 'prueba' in their Subject. However, the filter is not applying as I expected, again all events from target Calendar, no matter which Subject do they have, are included as output..
I took as a reference the ODATA documentation from here
http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part2-url-conventions/odata-v4.0-errata02-os-part2-url-conventions-complete.html#_Toc406398117
Am I doing something wrong with Filter Query definition?
Thank you in advance!