You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: neo4j/_async/work/session.py
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -416,9 +416,14 @@ async def begin_transaction(
416
416
417
417
:param metadata:
418
418
a dictionary with metadata.
419
-
Specified metadata will be attached to the executing transaction and visible in the output of ``dbms.listQueries`` and ``dbms.listTransactions`` procedures.
419
+
Specified metadata will be attached to the executing transaction
420
+
and visible in the output of ``SHOW TRANSACTIONS YIELD *``
420
421
It will also get logged to the ``query.log``.
421
-
This functionality makes it easier to tag transactions and is equivalent to ``dbms.setTXMetaData`` procedure, see https://neo4j.com/docs/operations-manual/current/reference/procedures/ for procedure reference.
422
+
This functionality makes it easier to tag transactions and is
423
+
equivalent to the ``dbms.setTXMetaData`` procedure, see
Copy file name to clipboardExpand all lines: neo4j/_sync/work/session.py
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -416,9 +416,14 @@ def begin_transaction(
416
416
417
417
:param metadata:
418
418
a dictionary with metadata.
419
-
Specified metadata will be attached to the executing transaction and visible in the output of ``dbms.listQueries`` and ``dbms.listTransactions`` procedures.
419
+
Specified metadata will be attached to the executing transaction
420
+
and visible in the output of ``SHOW TRANSACTIONS YIELD *``
420
421
It will also get logged to the ``query.log``.
421
-
This functionality makes it easier to tag transactions and is equivalent to ``dbms.setTXMetaData`` procedure, see https://neo4j.com/docs/operations-manual/current/reference/procedures/ for procedure reference.
422
+
This functionality makes it easier to tag transactions and is
423
+
equivalent to the ``dbms.setTXMetaData`` procedure, see
0 commit comments