I'm using Power Automate to retrieve large volumes of data from a SP List to get around delegation. The return is a JSON blob, in this format:

To access the fields, the template I'm using has this:
Table(ParseJSON(QueryResult))
And then you access the column like this: Value.column_name
My issue is that I have a huge app with hundreds of controls all mapped to the column names, so I don't want to edit them all to be Value.column_name.
Does anyone know how to transform the table to use the original column names?