如何正确导入RDF*文件
发布于 3 年前 作者 joylix 603 次浏览 来自 问答

关于导入RDF文件的方法,在 https://neo4j.com/labs/neosemantics/4.2/import/ 中有介绍, 我尝试导入W3C RDF 规范 https://w3c.github.io/rdf-star/cg-spec/editors_draft.html#example-1 中这个例子: ------------------------------------------------------------example1.ttl @prefix : http://www.example.org/ . :employee38 :familyName “Smith” . << :employee38 :jobTitle “Assistant Designer” >> :accordingTo :employee22 .

CALL n10s.rdf.import.fetch(“https://store9.gofile.io/download/EsAV7Z/83cc2087e7cbda23f30552605e68edbe/example1.ttl","Turtle*”); 结果只导入了2个节点,没有边被导入。怎样正确导入RDF*数据呢,就像下面的文章所介绍的: https://enterprise-knowledge.com/rdf-what-is-it-and-why-do-i-need-it/

8.jpeg 如何能在neo4j显示这样的RDF*数据?

回到顶部