send_cypher: Send a cypher file to be executed

View source: R/read_cypher.R

send_cypherR Documentation

Send a cypher file to be executed

Description

Send a cypher file to be executed

Usage

send_cypher(
  path,
  con,
  type = c("row", "graph"),
  output = c("r", "json"),
  include_stats = TRUE,
  meta = FALSE
)

Arguments

path

the path to the cypher file

con

a connexion object created with neo4j_api$new()

type

the type of the format to query for (row or graph)

output

the printing method (r or json)

include_stats

whether of not to include stats

meta

whether of not to include meta info

Value

a cypher call

Examples

## Not run: 
send_cypher("random/create.cypher")
path <- "data-raw/constraints.cypher"

## End(Not run)

neo4r documentation built on May 12, 2026, 5:07 p.m.

Related to send_cypher in neo4r...