Hello,
I have a PowerBI visual where the source is PostgreSql DB, on AWS, via an ODBC connection (gateway also). The visual in BI populates with data. I used the Optimizer to get the DAX query and use that in my first step after setting Recurrence. The step appears to run but doesn't return any data.

Outputs shows code of 200 with results body as follows:
{"results": [{}]} What I'm not understanding is why Power BI produces results but not Power Automate. I've attached the DAX Query below as well.// DAX Query
DEFINE
VAR __DS0Core = SUMMARIZE('Abandoned Cases','Abandoned Cases'[Case],'Abandoned Cases'[Days Old],'Abandoned Cases'[Status],'Abandoned Cases'[Request Date],'Abandoned Cases'[Conference]) VAR __DS0PrimaryWindowed = TOPN(501,__DS0Core,'Abandoned Cases'[Conference],1,'Abandoned Cases'[Days Old],0,'Abandoned Cases'[Case],1,'Abandoned Cases'[Status],1,'Abandoned Cases'[Request Date],1) EVALUATE
__DS0PrimaryWindowed ORDER BY
'Abandoned Cases'[Conference],'Abandoned Cases'[Days Old] DESC,'Abandoned Cases'[Case],'Abandoned Cases'[Status],'Abandoned Cases'[Request Date]
Any thoughts on what my issue could be?