How to loop through struct query result?
This is what I have.
<cfset inactivePagesReport = Server.CommonSpot.api.getObject('reports')>
<cfset inactivePages = inactivePagesReport.getInactivePages(0)>
<cfdump var="#inactivePages#">

So, how do I loop through each row and only output certain columns like ID, Name, Link columns?
Any help is much appreciated.
