Overview
In Microsoft Flow, I have a SharePoint Get Items action that will query a SharePoint list for monthly bills that have a due date of today. The Flow will then send a high priority email to remind me to pay the bill.
However, I do not want an email when no bills have a due date of today so I needed to create a condition in the logic to not email me if Get Items has an empty value. Here is the expression I created in my condition empty(body('Get_items')?['value'])
.