I have a yes/no column named AlertActive and I want my "Get Items" action to filter only those records where the AlertActive column is equal to "True." With SharePoint, we would just use:
AlertActive eq '1' but Dataverse doesn't like that. I have found the Schema name for the column, and I have tried the following:
eq true
eq True
eq '1'
eq '0'
but I get an error that states:
A binary operator with incompatible types was detected. Found operand types 'Edm.Boolean' and 'Edm.Int32' for operator kind 'Equal'.