| Package | Description |
|---|---|
| org.neo4j.driver | |
| org.neo4j.driver.async | |
| org.neo4j.driver.reactive | |
| org.neo4j.driver.summary |
| Modifier and Type | Method and Description |
|---|---|
Query |
Query.withParameters(Map<String,Object> newParameters) |
Query |
Query.withParameters(Value newParameters) |
Query |
Query.withText(String newText) |
Query |
Query.withUpdatedParameters(Value updates)
Create a new query with new parameters derived by updating this'
query's parameters using the given updates.
|
| Modifier and Type | Method and Description |
|---|---|
Result |
QueryRunner.run(Query query)
Run a query and return a result stream.
|
Result |
Session.run(Query query,
TransactionConfig config)
Run a query in a managed auto-commit transaction with the specified
configuration, and return a result stream. |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<ResultCursor> |
AsyncQueryRunner.runAsync(Query query)
Run a query asynchronously and return a
CompletionStage with a
result cursor. |
CompletionStage<ResultCursor> |
AsyncSession.runAsync(Query query,
TransactionConfig config)
Run a query asynchronously in an auto-commit transaction with the specified
configuration and return a
CompletionStage with a result cursor. |
| Modifier and Type | Method and Description |
|---|---|
RxResult |
RxQueryRunner.run(Query query)
Register running of a query and return a reactive result stream.
|
RxResult |
RxSession.run(Query query,
TransactionConfig config)
Run a query in an auto-commit transaction with specified
configuration and return a reactive result stream. |
| Modifier and Type | Method and Description |
|---|---|
Query |
ResultSummary.query() |