Return Neo4jVector initialized from documents and embeddings.
Neo4j credentials are required in the form of url, username,
and password and optional database parameters.
from_documents(
cls: Type[Neo4jVector],
documents: List[Document],
embedding: Embeddings,
distance_strategy: DistanceStrategy = DEFAULT_DISTANCE_STRATEGY,
ids: Optional[List[str]] = None,
**kwargs: Any = {}
) -> Neo4jVector