Ask a question to get started
Enter to sendā¢Shift+Enter new line
create_driver( uri: str, user: str, password: str, database: str
uri
str
Neo4j connection URI (e.g., "bolt://localhost:7687").
user
Neo4j username.
password
Neo4j password.
database
str | None
None
**kwargs
object
{}
Create a Neo4j driver with authentication.
Example:
driver = create_driver( ... uri="bolt://localhost:7687", ... user="neo4j", ... password="password" ... )
Optional database name (defaults to Neo4j default).
Additional driver configuration options.