manifold icon indicating copy to clipboard operation
manifold copied to clipboard

Cypher file manifold/neo4j support

Open sporkisfaster opened this issue 5 years ago • 0 comments

Is your feature request related to a problem? Please describe. Currently there is support for a myriad of other data and relationship driven resource types, including GraphQL. This seems like a natural fit for Neo4j (cypher) files as well given their

Describe the solution you'd like Drop in support for .cypher files as manifold types and Neo4j support

Additional context Here is what a sample cypher query looks like: `MATCH (n) RETURN n;

MATCH (batman:Person {name: 'Bruce Wayne'}) RETURN batman;`

And a more extensive .cypher file example can be found here: https://github.com/neo4j/cypher-shell/blob/1.2/cypher-shell/src/test/resources/org/neo4j/shell/parser/graphgems.cypher

More info on how Neo4j integrates with java itself is here: https://github.com/neo4j/neo4j-documentation/blob/3.5/embedded-examples/src/main/java/org/neo4j/examples/EmbeddedNeo4jWithIndexing.java maybe this can be leveraged

sporkisfaster avatar May 09 '19 16:05 sporkisfaster