Find answers from the community

Updated 3 months ago

I have some code similar to this:

I have some code similar to this:

Plain Text
        # store is a neo4j PropertyGraphStore
        loader = BeautifulSoupWebReader()
        documents = loader.load_data(urls=[url])
        index = PropertyGraphIndex.from_documents(documents, store=store)


I expected the store to be populated with some inferred nodes from the web page at url but that doesn't seem to be happening. Is there an obvious thing I need to add?
g
1 comment
To answer my own question, it needed to be property_graph_store=store not store=store when initializing my PropertyGraphIndex
Add a reply
Sign up and join the conversation on Discord