Create a Neo4j driver with authentication.
create_driver(
uri: str,
user: str,
password: str,
database: str | None = None,
**kwargs: object = {}
) -> DriverExample:
driver = create_driver( ... uri="bolt://localhost:7687", ... user="neo4j", ... password="password" ... )