API Demo
Learn how to test the graph service API of PropertyGraph and how to simplify Cypher queries.
We'll cover the following...
As a demo, we'll add our default graph to the Neo4j database.
Workflow
Press + to interact
iex> import PropertyGraphiex> default_graph = read_graph("default.cypher")iex> graph_create default_graphiex> graph_infoiex> with %Bolt.Sips.Response{results: results} =...> query!(conn(), "MATCH (n) RETURN n"), do: results
Line 1: We import the PropertyGraph
module.
Line 3: We use the read_graph/1
function to read the default graph from the graph store.
Line 5: We pipe this graph into the ...