Display All child entity associated to parent entity

0
I'm creating a job portal. Below is the entity relation of Job and Application I track jobs posted by an individual from the "Store 'owner'" attribute of the entity, using "[System.owner = '[%CurrentUser%]']"   I need to get all the applications for all the jobs that one have posted, any suggestions how can I achieve that?  
asked
1 answers
1

Do a retireve on the applications using the following Xpath

[MyFirstModule.Application_Job/MyFirstModule.Job[System.owner='[%CurrentUser%]']]

This should return all applications that are associated to a job where the owner is the current user.

-Andrej
PS: not tested

answered