Questions tagged [neo4j-browser]

Neo4j Browser is the default Neo4j's client application to query, visualize and manage Neo4j databases.

Neo4j Browser is the default Neo4j's client application to query, visualize and manage Neo4j databases.

Useful Links

61 questions
0
votes
1 answer

Exposing embedded Neo4J OGM database via bolt

I am using Neo4J embedded database with OGM and creating the database service in a directory via the OGM SessionFactory: Configuration configuration = new Configuration.Builder() .uris("C:\neoEmbeddedDb") .build(); …
Christian Huber
  • 828
  • 1
  • 5
  • 20
0
votes
1 answer

Changing the default Node label when viewing a graph from Browser - part 2

I tried following @LiveWithPassion's question and @Anomaly211's answer: https://stackoverflow.com/a/37496695/7027147 As shown in screenshot below, my neo4j browser doesn't show me the caption as as you can see in this image below: Neither can I…
Bharat Ram Ammu
  • 174
  • 2
  • 16
0
votes
0 answers

How Does Neo4j Browser Also Show Relationships When Return Field Is Just Nodes?

In Neo4j Browser you see all edges between resultant nodes when you only queried for nodes. For example, MATCH (n:Greeting) RETURN n shows nodes with the label 'Greeting' as well as all relationships between them. This is true for other more…
Jeffrey Goines
  • 935
  • 1
  • 11
  • 30
0
votes
1 answer

Can't connect to neo4j via Browser, bolt port changed in neo4j browser

I have used neo4j until now with a previous database. I now created a new database and I try to open neo4j browser and suddenly, I find: BoltConnectionError: No connection found, did you connect to Neo4j? Seeing logs of my database, I see…
Bharat Ram Ammu
  • 174
  • 2
  • 16
0
votes
1 answer

Error accessing Neo4J Browser online. I get ServiceUnavailable: WebSocket connection failure

I have a Neo4J EC2 instance on AWS. I am able to access it programmatically, but when I try to access the Neo4J browser I get the error listed above. The URL I am using currently is: http://35.174.211.60:7474/browser/ From there, I get the…
RayS
  • 15
  • 3
0
votes
1 answer

neo4j browser performing very slowly

I am running the query below in Neo4j browser. I have 2 labels and 1 relationship in the database. One label has 50,000 nodes and the other has 1,800 nodes, and there are 48,000 relationships. MATCH (u)-[r]->(n) WITH u, COLLECT(n) AS ns, COLLECT(r)…
mifin
  • 783
  • 2
  • 7
  • 11
0
votes
1 answer

How to make Property as First property ( which is shown on node in Neo4j Browser)

I create a node with this cypher MERGE (item:ITEM{code:'1629', price: 135000, url:'http://xuongmaythienphuc.vn/component/products/set-bo-dui-den-rot-vai-phoi-vien-logo-theu-sanh-dieu.html' }) On Neo4j Browser, price Property is first property and…
Haha TTpro
  • 5,137
  • 6
  • 45
  • 71
0
votes
1 answer

Integrate an autocomplete functionality for neo4j

I am currently visualizing a graph from embedded neo4j with d3. Now I want to add a cipher query language to my interface. One of the functionality that I want to integrate is autocomplete like the one used in neo4j browser. I also want to add…
Mohamed Amine Ouali
  • 575
  • 1
  • 8
  • 23
0
votes
1 answer

Neo4j browser.post_connect_cmd does not work

I run neo4j Version: 3.3.2 in a docker container and tried to configure a default style as described above. Grass file is accessible via HTTP (http://somedomain.com/resources/style.grass) CORS rules are set Command added to config:…
Ben Keil
  • 1,050
  • 1
  • 10
  • 30
0
votes
2 answers

Why is only 'id' available for 'caption' when I only create labels?

For example, for this statement: create (s:Student), (t:Teacher) In Neo4j Browser, only ID is used as caption. Why doesn't 'Student' and "Teacher" show to be chosen as caption as well? I want to model the domain so I don't want to create instances.
user697911
  • 10,043
  • 25
  • 95
  • 169
0
votes
1 answer

Neo4j graph visualization in Browser

I just installed Neo4j and played with it in Neo4j Browser. My first HelloWord example is like this: CREATE (database:Database {name:"Neo4j", id:"18"})-[r:SAYS]->(message:Message {name:"Hello World!"}) RETURN database, message, r The visualization…
user697911
  • 10,043
  • 25
  • 95
  • 169
0
votes
1 answer

How to add custom neo4j browser guide as Built in Guide?

It is possible to create custom neo4j browser guide and run it. Ex: :play http://guides.neo4j.com/graphgist/restaurant_recommendation.html. Also neo4j has default browser guides like :play cypher. I want to make my neo4j guide as built in guide like…
omurbek
  • 742
  • 1
  • 7
  • 23
0
votes
2 answers

Deploy modified neo4j-browser with neo4j as a new neo4j docker image?

I modified neo4j-browser. How can I deploy new neo4j docker image that uses modified neo4j-browser?
omurbek
  • 742
  • 1
  • 7
  • 23
0
votes
0 answers

Neo4j graph does not render correctly

Please see the attached picture. Both the nodes and the relationship are created using merge query such as below. MERGE (e1:entity1{prop:'propvalue'}) MERGE (e2:entity2{prop:'propvalue'}) MERGE (e1)-[:rel]->(e2) when I query as below, the graph…
paraglider
  • 21
  • 4
-1
votes
1 answer

neo4j browser being slooooow

I have grown used to the neo4j browser being slow. I mean really slow. If I make a query to the Movies database it takes maybe 15 seconds for it to show the result. It has bugged me, and was one of the reasons I bailed last time I looked at neo4j.…
eric
  • 27
  • 2