Description Usage Arguments Details Value Examples
'vec_to_cypher()' creates a list, and 'vec_to_cypher_with_var()' creates a cypher call starting with a variable.
1 2 3 | vec_to_cypher(vec, label)
vec_to_cypher_with_var(vec, label, variable)
|
vec |
the vector |
label |
the label of each vector |
variable |
the variable to use (for 'vec_to_cypher()') |
This function can be used with small vectors you want to send to the server. It can for example be used this way : “' paste("MERGE", vec_to_cypher(iris[1, 1:3], "Species")) “' to create a cypher call.
a character vector
1 2 | vec_to_cypher(iris[1, 1:3], "Species")
vec_to_cypher_with_var(iris[1, 1:3], "Species", a)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.