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

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(props)

node(props :: map()) :: String.t()
Link to this function

node(node_name, props)

node(node_name :: Strint.t() | atom(), props :: map()) :: String.t()
node(labels_list :: [atom()], props :: map()) :: String.t()
Link to this function

node(name, labels \\ [], props \\ %{})

node(name :: String.t(), labels :: list(), props :: map()) :: String.t()