Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/source/transactions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ To construct a :class:`.Session` use the :meth:`.Driver.session` method.

.. automethod:: run

.. automethod:: sync

.. automethod:: detach

.. automethod:: next_bookmarks
Expand Down Expand Up @@ -79,8 +77,6 @@ It also gives applications the ability to directly control `commit` and `rollbac

.. automethod:: run

.. automethod:: sync

.. automethod:: closed

.. automethod:: commit
Expand Down
4 changes: 0 additions & 4 deletions neo4j/work/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ def _consume_results(self):
def run(self, query, parameters=None, **kwparameters):
""" Run a Cypher query within the context of this transaction.

The query is sent to the server lazily, when its result is
consumed. To force the query to be sent to the server, use
the :meth:`.Transaction.sync` method.

Cypher is typically expressed as a query template plus a
set of named parameters. In Python, parameters may be expressed
through a dictionary of parameters, through individual parameter
Expand Down