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
7
votes
3 answers

Neo4j: Expected exactly one statement per query but got: 3

I'm doing a Neo4j hands-on exercise, following along to a UCSD video. I'm cutting and pasting the script provided for the exercises. I've just run into a problem with the provided script for a graph not containing the immediate neighborhood of a…
James_Pineda
  • 71
  • 1
  • 5
5
votes
1 answer

Neo4j Security Error 18 in internet Explorer

While running a query in neo4j using internet explorer i am getting a security error 18 DOM , whereas the same query works fine in chrome . Query that i am running create (n); SecurityError Screenshot :
Aman
  • 226
  • 1
  • 4
  • 17
4
votes
1 answer

How to pass multiple parameters to the Neo4j Browser

I'd like to pass multiple parameters to the Neo4j 4.0 browser while making sure that the type of the parameter values (int, date) is interpreted correctly. I tried using the syntax of the Cypher shell commands: Using the colon syntax paramName:…
Gabor Szarnyas
  • 4,410
  • 3
  • 18
  • 42
4
votes
1 answer

Get All Relationship Types Defined in Current Database

Is there any efficient way to get all relationship types currently defined? I know this works: match ()-[r]-() RETURN DISTINCT TYPE(r) But I guess this will consume significant time if the number of relationships is huge and there is no inherent…
Jeffrey Goines
  • 935
  • 1
  • 11
  • 30
3
votes
1 answer

How to increase a bubble size of node in Neo4j?

I tried looking the command but unable to increase the bubble size of the node as I want to view the complete text in a bubble.
2
votes
1 answer

How to bring Neo4j Sandbox project data (Russian Twitter Trolls) directly to Neo4j Desktop on my local laptop

I am wondering if there is a way to bring the sample projects and data on Neo4j Sandbox to Neo4j Desktop on my local laptop? I am very interested the Russian Twitter Trolls data and want to play around with it on my Neo4j Desktop. If no, I am…
MMAASS
  • 433
  • 4
  • 18
2
votes
1 answer

Display full names in Neo4J Browser

In Neo4J Browser, the Graph is shown with Edge labels truncated, with dots (...). I would like to display the Edge (Relationship) labels fully, without the triple dots (...). Is this possible?
cryanbhu
  • 4,780
  • 6
  • 29
  • 47
2
votes
2 answers

How to automatically expand child relationships in neo4j

When I run a query I can see the nodes correctly. But I need to go one by one and click "Expand child relationships" which is tedious and time consuming. Is there any way to see the graph with everything already expanded? Thanks!
shmibloo
  • 113
  • 1
  • 1
  • 5
2
votes
0 answers

Neo4j browser can't fully connect to embedded instance

I'm trying to connect to a neo4j embedded instance with the neo4j browser but when I try to connect the browser just displays "Connecting..." forever and the following error is shown in the browser console: Uncaught Error: Bolt V2 should always…
Greg
  • 1,225
  • 3
  • 16
  • 35
2
votes
2 answers

Cant login with Neo4j browser

I have installed neo4j on an EC2 instance and given port and access permissions to connect to it with chrome browser on my local machine. The database is fluently accessible when I run db access codes on EC2, through py2neo. But when I open database…
harshvardhan
  • 765
  • 13
  • 32
2
votes
1 answer

Why does the Neo4j browser display two different version numbers?

It says 3.0.1 in the About pane and 3.2.0 in the DB Information pane.
nicomp
  • 4,344
  • 4
  • 27
  • 60
1
vote
0 answers

How to expose Neo4j Browser from embedded instance?

When I run my Spring web application, I want Neo4J Browser to be available in my web browser to examine state of database. But I wasn't able to achieve it with or without servlet container. Based on these neo4j doc…
1
vote
0 answers

Retry after OOME fail when Neo4j procedure called from Neo4j browser but not from cypher-shell

I have Java method deployed into dockerized Neo4j as standard stored procedure in plugin. The method sets new property to all nodes of some label. It fails with OutOfMemoryError since the JVM heap is not appropriately sized for committing everything…
Tomáš Záluský
  • 10,735
  • 2
  • 36
  • 64
1
vote
1 answer

How to load yelp dump file in neo4j desktop?

I'm using Neo4j Desktop Version 1.4.3. I've created a new project named "Yelp Project", then uploaded the yelp dump file in it, but I'm not getting the option "Create new DBMS from dump". So I selected Add --> Local DBMS and created a database. But…
Mathew
  • 61
  • 1
  • 8
1
vote
2 answers

Create node in Cypher

I have a query I am working on neo4j making my first queries in Cypher, I noticed that when the graph is generated, when establishing the names of the properties, the generated graph only shows the id, to save this difficulty I noticed that for…
1
2 3 4 5