Skip to main content
The Neo4jResourceClient allows you to execute Cypher queries against Neo4j graph databases for node and relationship operations.

Usage

Inputs

The invoke method accepts the following arguments:
string
required
The Cypher query string to execute. Use $paramName for parameterized queries.
Record<string, unknown>
An object of named parameters for the Cypher query.
string
required
A unique identifier for this operation, used for tracing and logging.
number
Optional timeout in milliseconds for the query execution.

Outputs

On success (ok: true), the result object contains:
"database"
Discriminator for the response type.
Record<string, unknown>[]
An array of objects representing the records returned by the query.