@MyAzQuery If the schema of the nested logic is going to be the same for all invocations, then a simple expression like below should work
@body('NestedLogicAppAction')['ResultSets']['Table1'][0]['RETURN_VALUE']
You can read more about expressions and operators supported in the official docs.
But if it is possible to get multiple responses (like more tables), then you could use the Parse JSON action to get tokens for the RETURN_VALUE
, which when used in the logic apps designed should automatically add a for loop for you to process each table response accordingly.