I'm trying to load a json document into Neo4j but, if possible, I don't want to use a file because, in my case, it's a waste of time.
WHAT I'M DOING NOW:
- Python query to Elasticsearch Database
- Push data into a .json file
- From Neo4j Python Library, run apoc.load.json('file:///file.json')
WHAT I WANT TO DO:
- Python query to Elasticsearch Database
- From Neo4j Python Library, run apoc.load.json()
Is there any syntax that could help me with that? Thank you