I've got a flow set-up which acts on editing a document stored in SharePoint. The content type has a boolean yes/no field which needs to be set to yes (true) in order to perform the flow (send an e-mail). I'm struggling with finding the correct way to do this.
I have two questions:
1) Do I need to perform an additional "fetch the metadata" step or are the custom fields already present in the trigger (and how can I check which fields are in the trigger in the first place??)
2) What's the syntax for the expression? Things I've tried include:
@contains(trigger()['Ready']['Value'], 'Yes')
@contains(trigger()['Ready'], 'Yes')
@contains(body('De_metagegevens_van_het_bestand_ophalen_via_het_pad')?['Ready']['Value'], 'Yes')
And I've tried several different values (yes, true, 1). Nothing does the trick so far. I'd love some more background info on how to properly take on debugging these things. Checking the values, testing the expressions, that kind of stuff.