Hello,
I was importing data from Yago4 into stardog.
I've imported the same data in both stardog and another triplestore and checked online.
Now it seems that stardog skipped (?) some triples. That is if I run this query on my stardog endpoint I get an empty resultset, while the results exists (you can check online also [1]).
PREFIX schema: <http://schema.org/>
SELECT * FROM <http://yago-knowledge.org> WHERE {
?v0 schema:worksFor <http://yago-knowledge.org/resource/Dominick_Daly> .
?v0 schema:birthDate ?v3 .
} LIMIT 10
The result should be:
http://yago-knowledge.org/resource/Robert_Dalrymple_Ross "1827"^^xsd:gYear
Note that this query returns other results indeed.
PREFIX schema: <http://schema.org/>
SELECT * FROM <http://yago-knowledge.org> WHERE {
?v0 schema:birthDate ?v3 .
} LIMIT 10