sbhatt
sbhatt

Reputation: 485

Neo4j sparql plugin data loading

I want to insert RDF data of file containing 10M triple (berlin sparql benchmark) and I want to use neo4j sparql plugin for this. I have following questions regarding this,

sort of similar question was probably asked at Turn Neo4j into a triplestore but I couldn't find answer to my following questions.

  1. Is there any other way to to load data than using http://localhost:7474/db/data/ext/SPARQLPlugin/graphdb/insert_quad ? so I can query it using http://localhost:7474/db/data/ext/SPARQLPlugin/graphdb/execute_sparql. If there is, then how do I do it? and how do I query it after that?

  2. How can I load data which is in ttl form? Do I have to have my data in quad form?

Thanks In Advance!

Upvotes: 1

Views: 436

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41706

What do you want to achieve in the first place? Using Neo4j as a plain RDF store won't make you happy.

Try to look at your use-cases, create a sensible property-graph-model for those and import into it.

You can certainly read your ttl file with some tools or libraries available and then drive the Neo4j import from that.

Upvotes: 1

Related Questions