Dear All:
I tried to import an RDF* file as described on :
Importing RDF Data - Neosemantics
The contents of this file are shown in Example 1 of the W3C RDF* spec:
RDF-star and SPARQL-star
--------------------------------------------------------------------------example1.ttl
@prefix : http://www.example.org/ .
:employee38 :familyName "Smith" .
<< :employee38 :jobTitle "Assistant Designer" >> :accordingTo :employee22 .
I uploaded example1.ttl to https://gofile.io/ , and import it to neo4j:
CALL n10s.rdf.import.fetch("https://store9.gofile.io/download/EsAV7Z/83cc2087e7cbda23f30552605e68edbe/example1.ttl","Turtle*");
But it turns out that only the Smith node and the NS0: http://www.example.org/ were imported, no edge data is imported.
Is my operation incorrect, or the RDF* data like in example1 really cannot be imported into neo4j?
Thanks.
Joylix