Hi All,
I have a flow where I am testing if a user belongs to a SharePoint group and then creates an array of the groups they belong to.
Do do this I am filtering through an Array of all groups as below and then I want to check if the results from this HTTP request are blank (equal to "[]") as shown below.

The outputs of a (_api/web/sitegroups/GetByName('GroupName')/Users?$filter=Email eq 'EmailAddress') when the group doesn't contain this user looks like this.
{
"d": {
"results": []
}
}
However Power Automate see's this "[]" parameter as an array and won't perform the check. How can I create a condition that check if these results are blank?
I've tried using double and single quotes around the square brackets, I've tried "null" as well as leaving the parameter empty but no luck.