You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<#AnswersTriplesMap>
# Note: we need to explicitly JOIN the assessments' table so that we can get `care_recipient_id` to
# generate the correct graph URI.
rr:logicalTable [ rr:tableName "my_table" ];
rr:subjectMap [
rr:template "https://example.com/{identifier}";
rr:graphMap [ rr:template "https://example.com/score/{customer_id}" ];
];
Expected result
The customer_id column is selected and the graph is set.
Actual result
The customer_id column is not selected and this leads to the following error:
[main] ERROR es.upm.fi.dia.oeg.morph.r2rml.rdb.engine.MorphRDBNodeGenerator - error occured when translating result: The column name V_71150_customer_id was not found in this ResultSet.
Workaround
There is one, yay! Using a predicateObjectMap to explicitly fetch customer_id make the graphMap work.
The text was updated successfully, but these errors were encountered:
@jatoledo could you take a look to the issue and test it with a simple example? @sroze thanks for the feedback, I assume that would be impossible to have a piece of the data to test the system, but at least could you share with us what is the RDBMS you are using?
Hi there 👋 A found a small issue with
graphMap
.Example
Expected result
The
customer_id
column is selected and the graph is set.Actual result
The
customer_id
column is not selected and this leads to the following error:Workaround
There is one, yay! Using a
predicateObjectMap
to explicitly fetchcustomer_id
make thegraphMap
work.The text was updated successfully, but these errors were encountered: