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.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
196 | |
46 | |
45 | |
43 | |
36 |
User | Count |
---|---|
268 | |
82 | |
81 | |
74 | |
69 |