ex_cypher v0.3.0 ExCypher.Graph.Node
Builds nodes using cypher syntax
It can be used in order to build more complex queries involving your graph nodes.
Link to this section Summary
Functions
Returns the CYPHER's syntax to a node element.
Link to this section Functions
Returns the CYPHER's syntax to a node element.
Examples:
iex> node()
"()"
iex> node(%{name: "bob"})
"({"name": "bob"})"
iex> node([:Person])
"(:Person)"
iex> node([:Person], %{name: "Amelia"})
"(:Person {name: "Amelia"})"
iex> node(:a, [:Node])
"(a:Node)"
iex> node(:a, [:Node], %{name: "mark", age: 27})
"(a:Node {"name": "mark", "age": 27)"
Link to this function
node(node_name, props)
Link to this function