jetbrains-plugin-graph-database-support
jetbrains-plugin-graph-database-support copied to clipboard
Graph Databases support for JetBrains family IDEs.
The documentation reads 'Translate Cypher to Gremlin'. It would be nice to write queries in the Gremlin query language directly. I guess that would be easy to achieve?
Can't connect to neo4j version 4.0 via bolt port, but via web interface, it works well.
I see you support Neptune. What would it take to add support for SPARQL and thus any compatible triple store such as [Jena Fuseki](https://jena.apache.org/documentation/fuseki2/), [Stardog](https://www.stardog.com) or [AnzoGraph](https://docs.cambridgesemantics.com/anzograph/userdoc/sparql-ref.htm) and numerous others?
I'm trying to see whole graph (28 vertices, 30 edges) with query: `MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m` and got error ` Executing query: MATCH (n) OPTIONAL MATCH (n)-[r]-(m)...
java.lang.NoClassDefFoundError: com/intellij/icons/AllIcons$Process$State at com.neueda.jetbrains.plugin.graphdb.jetbrains.ui.datasource.interactions.neo4j.bolt.Neo4jBoltDataSourceDialog.lambda$new$0(Neo4jBoltDataSourceDialog.java:84) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6651) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at java.desktop/java.awt.Component.processEvent(Component.java:6416) at java.desktop/java.awt.Container.processEvent(Container.java:2263) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5026) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2321) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4858) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4918)...
Support of the commands CREATE CONSTRAINT...IS NODE KEY and DROP CONSTRAINT...IS NODE KEY close #85
I have installed this plugin in Pycharm. But when I ran .cyp, Pycharm tell me I should "Choose Data Source". So, how to connect neo4j database in Pycharm?  
While I get queries like `MATCH (n)-[r]->(m) RETURN n, m` to work, when executing a query like `MATCH (n)-[r]->(m) RETURN n, r, m`, the plugin fails with: ``` Executing query:...
Hi, how do I set the property that will be displayed as the "name" of the node in the graph view, like with the option bar at the bottom of...
It would be cool to support AgensGraph. For the most part the regular Postgres JDBC driver will work, except for returning some graph specific types like paths, which a visible...