apoc.cypher.runManyReadOnly

This procedure is not considered safe to run from multiple threads. It is therefore not supported by the parallel runtime (introduced in Neo4j 5.13). For more information, see the Cypher Manual → Parallel runtime.

Details

Syntax

apoc.cypher.runManyReadOnly(statement, params [, config ]) :: (row, result)

Description

Runs each semicolon separated read-only statement and returns a summary of the statement outcomes.

Input arguments

Name

Type

Description

statement

STRING

The Cypher statements to run, semicolon separated (;).

params

MAP

The parameters for the given Cypher statements.

config

MAP

{ statistics = true :: BOOLEAN }. The default is: {}.

Return arguments

Name

Type

Description

row

INTEGER

The row number of the run Cypher statement.

result

MAP

The result returned from the Cypher statement.