File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
neo4j-driver-deno/lib/core Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -207,10 +207,10 @@ const READERS: RoutingControl = 'READERS'
207207 * @typedef {'WRITERS'|'READERS' } RoutingControl
208208 */
209209/**
210- * Constant that represents writers routing control .
210+ * Constants that represents routing mode .
211211 *
212212 * @example
213- * driver.query ("<QUERY>", <PARAMETERS>, { routing: neo4j.routing.WRITERS })
213+ * driver.executeQuery ("<QUERY>", <PARAMETERS>, { routing: neo4j.routing.WRITERS })
214214 */
215215const routing = {
216216 WRITERS ,
@@ -272,7 +272,7 @@ class QueryConfig<T = EagerResult> {
272272 * A BookmarkManager is a piece of software responsible for keeping casual consistency between different pieces of work by sharing bookmarks
273273 * between the them.
274274 *
275- * By default, it uses the driver's non mutable driver level bookmark manager.
275+ * By default, it uses the driver's non mutable driver level bookmark manager. See, { @link Driver.queryBookmarkManager}
276276 *
277277 * Can be set to null to disable causal chaining.
278278 * @type {BookmarkManager|null }
Original file line number Diff line number Diff line change @@ -207,10 +207,10 @@ const READERS: RoutingControl = 'READERS'
207207 * @typedef {'WRITERS'|'READERS' } RoutingControl
208208 */
209209/**
210- * Constant that represents writers routing control .
210+ * Constants that represents routing mode .
211211 *
212212 * @example
213- * driver.query ("<QUERY>", <PARAMETERS>, { routing: neo4j.routing.WRITERS })
213+ * driver.executeQuery ("<QUERY>", <PARAMETERS>, { routing: neo4j.routing.WRITERS })
214214 */
215215const routing = {
216216 WRITERS ,
@@ -272,7 +272,7 @@ class QueryConfig<T = EagerResult> {
272272 * A BookmarkManager is a piece of software responsible for keeping casual consistency between different pieces of work by sharing bookmarks
273273 * between the them.
274274 *
275- * By default, it uses the driver's non mutable driver level bookmark manager.
275+ * By default, it uses the driver's non mutable driver level bookmark manager. See, { @link Driver.queryBookmarkManager}
276276 *
277277 * Can be set to null to disable causal chaining.
278278 * @type {BookmarkManager|null }
You can’t perform that action at this time.
0 commit comments