Hi everybody,
I need some help for creating an flow that should create a calendar event.
My flow should look in my calendar for new events created and create a new calendar event in dependency to the new event.
First I check for the event subject to filter for some special contents and that is where my problems start.
In my first condition check I have used the following filter "@or(contains(triggerBody()?['Subject'], 'FIRST'),contains(triggerBody()?['Subject'], 'SECOND'),contains(triggerBody()?['Subject'], 'THIRD'))"
So it should check for the event subject if one of the three contents is inside that and go on with the flow or not...
But when creating an event I get a failure message:
" Unable to process template language expressions for action 'check_subject' at line '1' and column '2469': 'The template language function 'contains' expects its first argument 'collection' to be a dictionary (object), an array or a string. The provided value is of type 'Null'.'. "
From that message I would assume that the subject is empty, but it's not... at least not the event I've created
Maybe someone can also tell me how to dig a little deeper in some logs fom MS flow, because I cannot see what event that flow is just processing.
Thanks in advance.
Thomas