Import data from RedisGraph through Cypher endpoint

I have a RedishGraph database with an endpoint that takes Cypher queries. I would like to export all the data from that RedishGraph and import it to a local Neo4j instance to make use of the dashboard and APOC subroutines. Are there any shortcut ways to do this – importing data to Neo4j through a Cypher endpoint?

Don't think you could that directly but could load it via a self-made endpoint which runs the query and sends it out as JSON. That you can pickup via the existing APOC import tools.

Perfect, that's exactly what I needed! We already have a self-made endpoint that takes Cypher queries, and returns a JSON.