I have a root entity item with 2 sub-entities. Is there any way I can defer the calculation of a ScriptTransformer to after the 2 sub-entities are processed? I need to access the variables from both the sub-entities in order to add a 3 variable using the ScriptTransformer.
<entity name="item" transformer="script:calculateValueForMyField"..> <entity name="sub1"> <field column="some_column_i_need" ... /> </entity> <entity name="sub2"> <field column="some_column_i_need" ... /> </entity> <field name="final_column"> </entity> In this example I need the final_column to run a ScriptTransformer using the values from sub1 and sub2. Is this possible? If not, what would be an alternative method? Thanks -- View this message in context: http://n3.nabble.com/DIH-questions-tp719892p719892.html Sent from the Solr - User mailing list archive at Nabble.com.