I am trying to write a simple flow which looks to see if a row containing a key item exists, and if not I will add a new row.
I wrote an Odata filter in List Rows Present to search on the incoming key data. If the key value is not found, I get an empty body from List Rows Present. I have tried creating a Condition to test for Null in tons of ways:
equals(triggerbody(), null) = true
trigger() = null
triggerFormDataValue('value') = null
and *many* other variations.
Any suggestions would be greatly appreciated!
