neo.find.nodes: neo.find.nodes

Description Usage Arguments Value Examples

Description

Helps to construct Cypher statements to search for matching nodes in Neo4j.

Usage

1
2
3
4
5
6
7
8
neo.find.nodes(
  search_term,
  var = "n",
  label = "",
  propery = "any_property",
  exact = FALSE,
  return = ""
)

Arguments

search_term

Term to search for in node properties. Not case-sensitive.

var

Variable to assign to this node. Defaults to "n"

label

To search only nodes with a particular label, eg "Person". Defaults to any label.

exact

Use TRUE if you want only exact matches of your search term. Defaults to FALSE to match any property value that CONTAINS your search term.

return

Used to construct the RETURN portion of the Cypher query.

property

The property type to search in. Defaults to any property.

Value

Cypher query (or partial query) as a string to pass to Neo4j

Examples

1
bn <- neo.find.nodes("Brendan")

brendan-newlon/df2neo4j documentation built on Sept. 19, 2020, 5:44 a.m.