Uses of Class
org.neo4j.driver.Query
Package
Description
-
Uses of Query in org.neo4j.driver
Modifier and TypeMethodDescriptionQuery.withParameters
(Map<String, Object> newParameters) Query.withParameters
(Value newParameters) Query.withUpdatedParameters
(Value updates) Create a new query with new parameters derived by updating this' query's parameters using the given updates.Modifier and TypeMethodDescriptionSession.run
(Query query, TransactionConfig config) Run a query in a managed auto-commit transaction with the specifiedconfiguration
, and return a result stream.Run a query and return a result stream. -
Uses of Query in org.neo4j.driver.async
Modifier and TypeMethodDescriptionRun a query asynchronously and return aCompletionStage
with a result cursor.AsyncSession.runAsync
(Query query, TransactionConfig config) Run a query asynchronously in an auto-commit transaction with the specifiedconfiguration
and return aCompletionStage
with a result cursor. -
Uses of Query in org.neo4j.driver.internal.async
Modifier and TypeMethodDescriptionInternalAsyncSession.runAsync
(Query query, TransactionConfig config) NetworkSession.runAsync
(Query query, TransactionConfig config) NetworkSession.runRx
(Query query, TransactionConfig config, CompletionStage<RxResultCursor> cursorPublishStage) ModifierConstructorDescriptionRunRxResponseHandler
(Logging logging, BoltConnection connection, Query query, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, AtomicBoolean runFailed) -
Uses of Query in org.neo4j.driver.internal.cursor
ModifierConstructorDescriptionResultCursorImpl
(BoltConnection boltConnection, Query query, long fetchSize, Consumer<Throwable> throwableConsumer, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, boolean closeOnSummary, Supplier<Throwable> termSupplier, CompletableFuture<UnmanagedTransaction> beginFuture, ApiTelemetryWork apiTelemetryWork) RxResultCursorImpl
(BoltConnection boltConnection, Query query, RunSummary runSummary, Throwable runError, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, Consumer<Throwable> throwableConsumer, boolean closeOnSummary, Supplier<Throwable> interruptSupplier, Logging logging) -
Uses of Query in org.neo4j.driver.internal.reactive
Modifier and TypeMethodDescriptionprotected <T> org.reactivestreams.Publisher<T>
AbstractReactiveSession.run
(Query query, TransactionConfig config, Function<RxResultCursor, T> cursorToResult) InternalReactiveSession.run
(Query query, TransactionConfig config) Deprecated.InternalRxSession.run
(Query query, TransactionConfig config) Deprecated.Deprecated. -
Uses of Query in org.neo4j.driver.internal.reactivestreams
Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<ReactiveResult>
org.reactivestreams.Publisher<ReactiveResult>
org.reactivestreams.Publisher<ReactiveResult>
InternalReactiveSession.run
(Query query, TransactionConfig config) org.reactivestreams.Publisher<ReactiveResult>
-
Uses of Query in org.neo4j.driver.internal.summary
ModifierConstructorDescriptionInternalResultSummary
(Query query, ServerInfo serverInfo, DatabaseInfo databaseInfo, QueryType queryType, SummaryCounters counters, Plan plan, ProfiledPlan profile, List<Notification> notifications, Set<GqlStatusObject> gqlStatusObjects, long resultAvailableAfter, long resultConsumedAfter) -
Uses of Query in org.neo4j.driver.internal.util
Modifier and TypeMethodDescriptionMetadataExtractor.extractSummary
(Query query, BoltConnection connection, long resultAvailableAfter, Map<String, Value> metadata, boolean legacyNotifications, GqlStatusObject gqlStatusObject) -
Uses of Query in org.neo4j.driver.reactive
Modifier and TypeMethodDescriptionRegister running of a query and return a publisher ofReactiveResult
.ReactiveSession.run
(Query query, TransactionConfig config) Run a query in an auto-commit transaction with specifiedconfiguration
and return a publisher ofReactiveResult
.Deprecated.Register running of a query and return a reactive result stream.RxSession.run
(Query query, TransactionConfig config) Deprecated.Run a query in an auto-commit transaction with specifiedconfiguration
and return a reactive result stream. -
Uses of Query in org.neo4j.driver.reactivestreams
Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<ReactiveResult>
Register running of a query and return a publisher ofReactiveResult
.org.reactivestreams.Publisher<ReactiveResult>
ReactiveSession.run
(Query query, TransactionConfig config) Run a query in an auto-commit transaction with specifiedconfiguration
and return a publisher ofReactiveResult
. -
Uses of Query in org.neo4j.driver.summary