...

/

Step 5: Put RDF into the Local RDF Graph Database

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 RDFGraph
iex> bob_neo |> write_graph("bob_neo.ttl")
iex> rdf_store :local
iex> read_graph("bob_neo.ttl") |> graph_create
iex> """
...> PREFIX ex: <http://example/>
...> SELECT * WHERE { ?s ex:uuid ?uuid }
...> """ |> sparql!

Line 1: We switch context ...