I am trying to get items from a list and trying to limit the number of items I get via a filter on the Get Items action. I am having problems and have tried many iterations.
I am trying to filter the Items by the value in the column called Employee:Mobile No.
Here is the output of some of the first item in the list if I do a query with no filter:
"body": {
"value": [
{
"@odata.etag": "\"1\"",
"ItemInternalId": "49718",
"ID": 49718,
"Title": "Rostered Day Off",
"Employee_x003a_Mobile_x0020_No": {
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 4,
"Value": "0411111111"
},
"Employee_x003a_Mobile_x0020_No#Id": 4,
and here is my query

And the result when I run the flow is

Some of the iterations I have tried in my query are:
Employee_x003a_Mobile_x0020_No/Title eq '0411111111'
Employee_x003a_Mobile_x0020_No eq '0411111111'
Employee:Mobile_x0020_No/Value eq '0411111111'
Employee:Mobile No/Value eq '0411111111'
I haven't found any internet searches which seem to deal specifically with this. The only one which looked like it may work seemed to have the sub item called Title and that is why, out of desperation I tried the iteration with Title.
The error states that the column does not exist when in the data returned from a query without the filter I can see it does exist so I clearly have something wrong in my syntax.