From Dataverse, I am trying to bring back columns of related tables in a single query. Sort of the equivalent of an ODATA $expand clause. Does ShowColumns have a syntax that allows that?
Power Apps "Explicit Column Selection" is somehow doing this. For example, in a table of 'Paperwork' that has a Lookup column to a table of Jobs, PowerApps generates a query that pulls in non-key fields of Jobs (because I use those columns later in the app):
.../api/data/v9.0/$metadata#ccs_opspaperworksets(ccs_opspaperworksetid,ccs_paperworkset,ccs_shiftdate,
..., ccs_Job(ccs_jobid,ccs_jobsearchdescription,ccs_jobno,ccs_jobcustomername)
Note the field expansion on the relationship field ccs_Job.
When I need to resort to ShowColumns, how can this be reproduced?