I am trying to use the PowerApps for Makers connector to get a list of connections.
This gives me all of my connections.
PowerAppsforAdmins.GetAdminConnections(_myenv).value
But the documentation says I can optionally filter the list, but I can't find any syntax for making this work. Has anyone been successful using the filter opiton?
Solved! Go to Solution.
Hi @barlowse ,
According to my test, the $filter parameter seems to be used to filter the environment.
PowerAppsforMakers.GetConnections({'$filter': " environment eq 'your Id' a ",'$top':1000}).value
And I think it can't filter other columns.
So If you want to filter the table , you could use filter() function .
Filter(
PowerAppsforMakers.GetConnections({'$filter': " environment eq 'your Id' a ",'$top':1000}).value
, ...)
Best Regards,
Wearsky
Hi @barlowse ,
According to my test, the $filter parameter seems to be used to filter the environment.
PowerAppsforMakers.GetConnections({'$filter': " environment eq 'your Id' a ",'$top':1000}).value
And I think it can't filter other columns.
So If you want to filter the table , you could use filter() function .
Filter(
PowerAppsforMakers.GetConnections({'$filter': " environment eq 'your Id' a ",'$top':1000}).value
, ...)
Best Regards,
Wearsky
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
199 | |
97 | |
58 | |
51 | |
42 |
User | Count |
---|---|
261 | |
157 | |
84 | |
79 | |
57 |