I have 2 environment variables in a solution as below,
First environment variable : default value is "yes" and current value is empty.
Second environment variable: default value is "one" and current value is "two"
I refereed this blog "https://powerapps.microsoft.com/en-us/blog/environment-variables-available-in-preview/" ,here after first CDS call for entity "environment variables definition" they are looping through value and fetched current value by making other call for entity "environment variables value".
My requirement is
1)using power automate get above 2 environment variables at a time(with default and current value) means in one CDS call. Instead of calling 2 entities, call only one entity and fetch above values. or
2) 1st call to "environment variable definition" entity to get default values of both environment variables and store in an array.
Then make 2nd call to "environment variable value" entity to get current value of both environment variables and store in another array.