...

/

Step 2: Put RDF into the Local Property Graph Database

Step 2: Put RDF into the Local Property Graph Database

Learn how to import the RDF graph into the property graph database.

We'll cover the following...

Workflow

We’ll now import the RDF graph we created into our property graph database:

Press + to interact
iex> graph_service PropertyGraph
iex> graph_delete
iex> graph_info
iex> "CALL n10s.graphconfig.init()" |> cypher!
iex> """
...> CREATE CONSTRAINT n10s_unique_uri ON (r:Resource)
...> ASSERT r.uri IS UNIQUE;
...> """ |> cypher!
iex> bob_uri = "file://" <> bob_graph.path
iex> "CALL n10s.rdf.import.fetch('" <> bob_uri <> "', 'Turtle')" |> cypher!
...