Hi I'm trying to import rdf data into neo4j.
Everything seemed fine, but I realized that the result of
CALL n10s.rdf.import.fetch
Seems a little bit odd. I imported my rdf set. Then I imported it again, as expected there are no new nodes in the databse, but I checked for result of the import and there I can see
that result after the second import is like this.
╒═════════════════╤═════════════╤═════════════╤══════════╤═════════╤══════════╕
│terminationStatus│triplesLoaded│triplesParsed│namespaces│extraInfo│callParams│
╞═════════════════╪═════════════╪═════════════╪══════════╪═════════╪══════════╡
│"OK" │54 │54 │null │"" │{} │
└─────────────────┴─────────────┴─────────────┴──────────┴─────────┴──────────┘
Mind you, it's second imoprt, so I though that triplesLoaded
should be 0.
I think that I don't understand the output or it is misleading.
Thanks for your explanations :D.