Hi,
Should any of the following work? Maybe I'm just misunderstanding how $iter works, but I expected a table with the objects in my object group, or - in the last example - a table containing rows with values 1, 2, 3, ....
Table.query("SELECT $2 FROM $1", Group("MyObjectGroup"), $iter(1)) Table.query("SELECT $2 FROM $1", Group("MyObjectGroup").toFlatArray(), $iter(1)) Table.query("SELECT $2 FROM $1", Group("MyObjectGroup").length, Group("MyObjectGroup")[$iter(1)]) Table.query("SELECT $2 FROM $1", Group("MyObjectGroup").length, $iter(1))