Create an async Neo4j driver with authentication.
create_async_driver(
uri: str,
user: str,
password: str,
database: str | None = None,
**kwargs: object = {}
) -> AsyncDriverExample:
driver = await create_async_driver( ... uri="bolt://localhost:7687", ... user="neo4j", ... password="password" ... )