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 PropertyGraphiex> graph_deleteiex> graph_infoiex> "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.pathiex> "CALL n10s.rdf.import.fetch('" <> bob_uri <> "', 'Turtle')" |> cypher!
...