Hi
This resolution involves multiple steps, and you haven't provided the complete path.
Step by step:
1) Type numisdata3 has a portal Authority numisdata249
And your diffusion node define correctly the relation in the Connected to
The table call to Type and you want to use the data into Authority. All ok.
2) Next step Authority numisdata249 portal call to Authorities group numisdata1374

3) Authorities group numisdata1374 has a portal (as autocomplete) Ruler numisdata1379 that calls to People references rsc1152

4) And People references has the Person rsc1156 that you want to obtain for the column.

The full path:
numisdata3-> numisdata249-> numisdata1374-> numisdata1379-> rsc1152->rsc1156
section->portal->section->portal->section->portal
Therefore, you must define the full path of your target using the components, the portals, and you are defined only the source and the final target.
In v6 the path is nested and complex, in v7 the paths as re-defined to be more clear and easy to understand.
v6:
{
"process_dato": "diffusion_sql::resolve_value",
"process_dato_arguments": {
"output": "merged",
"component_method": "get_diffusion_resolve_value",
"custom_arguments": [
{
"process_dato_arguments": {
"component_method": "get_diffusion_value",
"target_component_tipo": "rsc1156"
}
}
],
"split_string_value": " | ",
"target_component_tipo": "numisdata1379"
}
}
v7:
{
"process": {
"ddo_map": [
{
"tipo": "numisdata249",
"section_tipo": "self"
},
{
"tipo": "numisdata1379",
"parent": "numisdata249"
},
{
"id": "a",
"tipo": "rsc1156",
"parent": "numisdata1379"
}
]
}
}
Note: Why does the chain use only portals and not the sections? Well, you must define the section when the path has multiple sections to resolve. For example, a portal that calls People and Entities. However, if the target section is always one section, it's not necessary to define it because the ontology knows what the target sections are. The path is clear and can be resolved.
Note2: you are pointing to a portal, your last item in the chain is not a literal it's a relationship, so, maybe you must go deeper into the relationship and resolve the name rsc85 and surname rsc86
Note 3: I haven't tested the properties, so it might not work directly. They are just examples of how it works. If you test it and they don't work, and you can't find a solution, I'll reproduce this specific resolution. However, it takes time.
I hope is clear.
best