not sure, if you have an aggregate to modResource with an alias for example of 'Resource' in your db-schema.
If so, you can try:
[[migxLoopCollection?
&packageName=`list-of-something`
&classname=`list-of-something`
&joins=`[{"alias":"Resource","selectfields":"id,pagetitle"}]`
&tpl=`@CODE:Name of resource is: [[+Resource_pagetitle]]`
]]
If not you can join with:
[[migxLoopCollection?
&packageName=`list-of-something`
&classname=`list-of-something`
&joins=`[{"alias":"Resource","classname":"modResource","on":"Resource.id=list-of-something.id-of-a-resource","selectfields":"id,pagetitle"}]`
&tpl=`@CODE:Name of resource is: [[+Resource_pagetitle]]`
]]
this should be faster than having a getResourceField - call at each row.