From b91927fc11a23b66021731f3e86bfdc1d0baa8d0 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Mon, 27 Feb 2023 03:45:04 +0100 Subject: [PATCH] Remove deprecated procedures mention from `TransactionConfig` docs. --- packages/neo4j-driver/src/docs.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/neo4j-driver/src/docs.js b/packages/neo4j-driver/src/docs.js index 8fa4c4eb3..9f67a9d88 100644 --- a/packages/neo4j-driver/src/docs.js +++ b/packages/neo4j-driver/src/docs.js @@ -31,7 +31,8 @@ * @property {number} timeout - the transaction timeout in **milliseconds**. Transactions that execute longer than the configured timeout will * be terminated by the database. This functionality allows to limit query/transaction execution time. Specified timeout overrides the default timeout * configured in the database using `dbms.transaction.timeout` setting. Value should not represent a duration of zero or negative duration. - * @property {Object} metadata - the transaction metadata. Specified metadata will be attached to the executing transaction and visible in the output of - * `dbms.listQueries` and `dbms.listTransactions` procedures. It will also get logged to the `query.log`. This functionality makes it easier to tag - * transactions and is equivalent to `dbms.setTXMetaData` procedure. + * @property {Object} metadata - the transaction metadata. Specified metadata will be attached to the executing transaction and visible in the output + * of `SHOW TRANSACTIONS YIELD *`. It will also get logged to the `query.log` file. This functionality makes it easier to tag transactions and is + * equivalent to the `dbms.setTXMetaData` procedure, see https://neo4j.com/docs/cypher-manual/current/clauses/transaction-clauses/#query-listing-transactions + * and https://neo4j.com/docs/operations-manual/current/reference/procedures/ for reference. */