It's certainly a basic question but i could'nt manage to find the answer : i have a WeaviateVectorStore from which i have a VectorIndex. I need to load the docstore to iterate some search through all docs, but i dont know how to load the docstore.
vhector_store = WeaviateVectorStore(
weaviate_client=client, index_name="Ffnuydhnxulwm"
)
index = VectorStoreIndex.from_vector_store(
vhector_store,
)
docstore = index.storage_context.docstore
here, docstore seems empty
I am can query the index without any problem