Skip to main content
Module

x/neo4j_lite_client/core/driver.ts

Unofficial Neo4j Driver for Deno
Latest
import * as neo4jLiteClient from "https://deno.land/x/neo4j_lite_client@4.4.6/core/driver.ts";

Classes

A driver maintains one or more Sessions with a remote Neo4j instance. Through the Sessions you can send queries and retrieve results from the database.

A driver maintains one or more Sessions with a remote Neo4j instance. Through the Sessions you can send queries and retrieve results from the database.

Variables

Constant that represents read session access mode. Should be used like this: driver.session({ defaultAccessMode: neo4j.session.READ }).

Constant that represents write session access mode. Should be used like this: driver.session({ defaultAccessMode: neo4j.session.WRITE }).