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
I tried the following query in the UniKG example in the documentation:
MATCH (r:UniKG_r {iri:"http://kuzu.io/rdf-ex#Waterloo"})-[p:UniKG_lt]->(o)
WHERE p.iri = "http://kuzu.io/rdf-ex#population"
SET p.iri = "http://kuzu.io/rdf-ex#population2"
RETURN r.iri, p.iri, o.iri
This query is trying to set the IRI of the resource node. I got the following output:
The previous IRI is still there. And when I query for all triples, I don't see any triple of Waterloo with predicate http://kuzu.io/rdf-ex#population2.
We should either disable setting iris of predicates or support this so that we implement the right behavior, which is:
add the predicate if needed to Resources table
set the IRI of the predicate relationship.
The text was updated successfully, but these errors were encountered:
I tried the following query in the UniKG example in the documentation:
This query is trying to set the IRI of the resource node. I got the following output:
Which already is wrong. But it also did not have any effect, i.e., the IRI stayed the same:
The previous IRI is still there. And when I query for all triples, I don't see any triple of Waterloo with predicate http://kuzu.io/rdf-ex#population2.
We should either disable setting iris of predicates or support this so that we implement the right behavior, which is:
The text was updated successfully, but these errors were encountered: