@@ -233,18 +233,18 @@ Closing a driver will immediately shut down all connections in the pool.
233233 assert isinstance(count, int)
234234 return count
235235
236- :param query_ :
236+ :param query :
237237 Cypher query to execute.
238238 Use a :class: `.Query ` object to pass a query with additional
239239 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 \_ :
244244 Whether to route the query to a reader (follower/read replica) or
245245 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 \_ :
248248 Database to execute the query against.
249249
250250 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.
255255 as it will not have to resolve the default database first.
256256
257257 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 \_ :
260260 Name of the user to impersonate.
261261
262262 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.
265265 permissions.
266266
267267 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 \_ :
270270 Authentication information to use for this query.
271271
272272 By default, the driver configuration is used.
273273
274274 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 \_ :
277277 A function that gets passed the :class: `neo4j.AsyncResult ` object
278278 resulting from the query and converts it to a different type. The
279279 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.
333333 result_transformer_=transformer
334334 )
335335
336- :type result_transformer_ :
336+ :type result_transformer \_ :
337337 typing.Callable[[AsyncResult], typing.Awaitable[T]]
338- :param bookmark_manager_ :
338+ :param bookmark_manager \_ :
339339 Specify a bookmark manager to use.
340340
341341 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.
344344 Defaults to the driver's :attr: `.execute_query_bookmark_manager `.
345345
346346 Pass :data: `None ` to disable causal consistency.
347- :type bookmark_manager_ : AsyncBookmarkManager | BookmarkManager | None
347+ :type bookmark_manager \_ : AsyncBookmarkManager | BookmarkManager | None
348348 :param kwargs: additional keyword parameters. None of these can end
349349 with a single underscore. This is to avoid collisions with the
350350 keyword configuration parameters of this method. If you need to
0 commit comments