API data from the non-persistent entities

0
I'm really new to Mendix and don't know how to get the data from the non-persistent entities created by the import mapping and an actual entity in the database I can do something with.How To Put Data Like Language , UserRules , Association Into non-persistent entities
asked
1 answers
0

An import-mapping will only return the root-object (or root-list) of the imported data to your microflow. All associated objects, you can get by adding a retrieve over association from that root-object.

For example:

image.png

Will return a list of objects named 'Continent', and if you want the list of countries per continent, you need to do a retrieve over association. Something like this:

image.png

 

Hope you get to your solution.

answered