Uses of Class
org.neo4j.driver.Query
Packages that use Query
Package
Description
-
Uses of Query in org.neo4j.driver
Methods in org.neo4j.driver that return QueryModifier 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.Methods in org.neo4j.driver with parameters of type QueryModifier 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
Methods in org.neo4j.driver.async with parameters of type QueryModifier 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
Methods in org.neo4j.driver.internal.async with parameters of type QueryModifier and TypeMethodDescriptionInternalAsyncSession.runAsync
(Query query, TransactionConfig config) NetworkSession.runAsync
(Query query, TransactionConfig config) NetworkSession.runRx
(Query query, TransactionConfig config, CompletionStage<RxResultCursor> cursorPublishStage) Constructors in org.neo4j.driver.internal.async with parameters of type QueryModifierConstructorDescriptionRunRxResponseHandler
(Logging logging, DriverBoltConnection connection, Query query, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, AtomicBoolean runFailed, Consumer<String> databaseNameConsumer) -
Uses of Query in org.neo4j.driver.internal.cursor
Constructors in org.neo4j.driver.internal.cursor with parameters of type QueryModifierConstructorDescriptionResultCursorImpl
(DriverBoltConnection boltConnection, Query query, long fetchSize, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, boolean closeOnSummary, CompletableFuture<UnmanagedTransaction> beginFuture, Consumer<String> databaseNameConsumer, ApiTelemetryWork apiTelemetryWork) RxResultCursorImpl
(DriverBoltConnection boltConnection, Query query, RunSummary runSummary, Throwable runError, Consumer<org.neo4j.driver.internal.DatabaseBookmark> bookmarkConsumer, boolean closeOnSummary, Logging logging) -
Uses of Query in org.neo4j.driver.internal.reactive
Methods in org.neo4j.driver.internal.reactive with parameters of type QueryModifier 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
Methods in org.neo4j.driver.internal.reactivestreams with parameters of type QueryModifier 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
Methods in org.neo4j.driver.internal.summary that return QueryConstructors in org.neo4j.driver.internal.summary with parameters of type QueryModifierConstructorDescriptionInternalResultSummary
(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
Methods in org.neo4j.driver.internal.util with parameters of type QueryModifier and TypeMethodDescriptionMetadataExtractor.extractSummary
(Query query, DriverBoltConnection connection, long resultAvailableAfter, Map<String, Value> metadata, boolean legacyNotifications, GqlStatusObject gqlStatusObject) -
Uses of Query in org.neo4j.driver.reactive
Methods in org.neo4j.driver.reactive with parameters of type QueryModifier 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
Methods in org.neo4j.driver.reactivestreams with parameters of type QueryModifier 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
Methods in org.neo4j.driver.summary that return Query