JimmyM wrote:
Will the 'from' CE iterate over each object within objList2? 

for example

when
$o1 : Object1()
$o2 : Object2(objList.field1 != null) from $o1.object2
then
#do something
end
  
make sure the 'from' expression returns a collection, then this will do what you want.
or will i need to flatten out each list and deal with each object
separately?


Mark Proctor wrote:
  
use the 'from' keyword to work with collections, or flatten your objects.

Mark