I have a flow that looks for changes in the last week to a sharepoint list. First is fetches "items modified", then it adds those Item ID numbers to an array, then it runs through an "apply to each: get changes for an item or a file (properties only)" step. It seems to be doing EXACTLY what I want it to do as far as what it is pulling, but I can't seem to figure out how to then use the data it pulls as it doesn't seem to create any sort of "output".
How can I use this output (picture 2) to update the original array?



Original Get Items Data:
| ID | TItle | Date Modified | Modified by | Top Issues | Risks & Opps |
| 32 | Project Title | 3/1/2020 | Erin Nicole | Things | Stuff |
| 33 | Project #2 | 4/1/2020 | Erin | Stuff | Things |
Changed Items Output: <--- can't even figure out how to get this in a usable format
| ID | Has Column Changed: Project Title | Has Column Changed: Status Date | Has Column Changed: Project Lead |
| 32 | False | True | False |
| 33 | True | True | False |
Final Output: <-- let alone this!
| ID | TItle | Date Modified | Modified by | Top Issues | Risks & Opps | Has Column Changed: Project Title | Has Column Changed: Status Date | Has Column Changed: Project Lead |
| 32 | Project Title | 3/1/2020 | Erin Nicole | Things | Stuff | False | True | False |
| 33 | Project #2 | 4/1/2020 | Erin | Stuff | Things | True | True | False |
I'm happy to dig - I just seem to not even be googling the right things - any suggestions?
.