From graphrag_neo4j/graphrag.py:
in function ingest_to_qdrant
it seems like the embedding being upserted does not correspond to the node_id.
Each embedding is generated from each line of raw_data, while node_id is generated by the LLM in an arbitrary order.
That is, the node_id and embedding pair that are being upserted are not related to each other.
Am I getting it right?