Hi all, I need help with a problem I am having during a migration. I am declaring a variable as follows:
vector_result = collection.query.fetch_objects(
limit=1,
filters=Filter.by_property("weaviate_post_id").equal(post.get("weaviate_post_id")),
return_properties=[],
include_vector=True,
)
When I try to access vector_result.vector[“default”] , I get the following error: "QueryReturn’ object has no attribute ‘vector’. Could someone please assist me with this?