@@ -233,18 +233,18 @@ Closing a driver will immediately shut down all connections in the pool.
233
233
assert isinstance(count, int)
234
234
return count
235
235
236
- :param query_ :
236
+ :param query :
237
237
Cypher query to execute.
238
238
Use a :class: `.Query ` object to pass a query with additional
239
239
transaction configuration.
240
- :type query_ : typing.LiteralString | Query
241
- :param parameters_ : parameters to use in the query
242
- :type parameters_ : typing.Dict[str, typing.Any] | None
243
- :param routing_ :
240
+ :type query : typing.LiteralString | Query
241
+ :param parameters \_ : parameters to use in the query
242
+ :type parameters \_ : typing.Dict[str, typing.Any] | None
243
+ :param routing \_ :
244
244
Whether to route the query to a reader (follower/read replica) or
245
245
a writer (leader) in the cluster. Default is to route to a writer.
246
- :type routing_ : RoutingControl
247
- :param database_ :
246
+ :type routing \_ : RoutingControl
247
+ :param database \_ :
248
248
Database to execute the query against.
249
249
250
250
None (default) uses the database configured on the server side.
@@ -255,8 +255,8 @@ Closing a driver will immediately shut down all connections in the pool.
255
255
as it will not have to resolve the default database first.
256
256
257
257
See also the Session config :ref: `database-ref `.
258
- :type database_ : str | None
259
- :param impersonated_user_ :
258
+ :type database \_ : str | None
259
+ :param impersonated_user \_ :
260
260
Name of the user to impersonate.
261
261
262
262
This means that all query will be executed in the security context
@@ -265,15 +265,15 @@ Closing a driver will immediately shut down all connections in the pool.
265
265
permissions.
266
266
267
267
See also the Session config :ref: `impersonated-user-ref `.
268
- :type impersonated_user_ : str | None
269
- :param auth_ :
268
+ :type impersonated_user \_ : str | None
269
+ :param auth \_ :
270
270
Authentication information to use for this query.
271
271
272
272
By default, the driver configuration is used.
273
273
274
274
See also the Session config :ref: `session-auth-ref `.
275
- :type auth_ : typing.Tuple[typing.Any, typing.Any] | Auth | None
276
- :param result_transformer_ :
275
+ :type auth \_ : typing.Tuple[typing.Any, typing.Any] | Auth | None
276
+ :param result_transformer \_ :
277
277
A function that gets passed the :class: `neo4j.AsyncResult ` object
278
278
resulting from the query and converts it to a different type. The
279
279
result of the transformer function is returned by this method.
@@ -333,9 +333,9 @@ Closing a driver will immediately shut down all connections in the pool.
333
333
result_transformer_=transformer
334
334
)
335
335
336
- :type result_transformer_ :
336
+ :type result_transformer \_ :
337
337
typing.Callable[[AsyncResult], typing.Awaitable[T]]
338
- :param bookmark_manager_ :
338
+ :param bookmark_manager \_ :
339
339
Specify a bookmark manager to use.
340
340
341
341
If present, the bookmark manager is used to keep the query causally
@@ -344,7 +344,7 @@ Closing a driver will immediately shut down all connections in the pool.
344
344
Defaults to the driver's :attr: `.execute_query_bookmark_manager `.
345
345
346
346
Pass :data: `None ` to disable causal consistency.
347
- :type bookmark_manager_ : AsyncBookmarkManager | BookmarkManager | None
347
+ :type bookmark_manager \_ : AsyncBookmarkManager | BookmarkManager | None
348
348
:param kwargs: additional keyword parameters. None of these can end
349
349
with a single underscore. This is to avoid collisions with the
350
350
keyword configuration parameters of this method. If you need to
0 commit comments