How to access (retrieve) layered entities

0
i want to make a string combined from Strings from linked attributes. However i can not figure out how i can get “one layer deeper”   I have the following datastructure in a microflow after commiting the registration entity, i want to change as element in the Deck entity. Thats the microflow: first i retriev, but i dont know what exactly 3x the entities from the lower layer? (NewRegistrationList like in the screenshot is probably false, as it is the following relationship)     I can access the Deck and even the Person or Alliance or HeroClass entities. But i cannot access the attributes of Person like “name” see picture.      
asked
1 answers
1

You’ll want to use a path that looks something like this:

$Deck/MyFirstModule.Deck_Person/Person/Name

Deck_Person traverses the association

Person gets the entity

Name is the attribute you want

answered