Step 5: Put RDF into the Local RDF Graph Database
Learn how to store the RDF in the local graph database.
We'll cover the following...
Workflow
We’ll now store our RDF into the local RDF graph database:
Press + to interact
iex> graph_service RDFGraphiex> bob_neo |> write_graph("bob_neo.ttl")iex> rdf_store :localiex> read_graph("bob_neo.ttl") |> graph_createiex> """...> PREFIX ex: <http://example/>...> SELECT * WHERE { ?s ex:uuid ?uuid }...> """ |> sparql!
Line 1: We switch context ...