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

Neo4j - How to display a graph of Nodes connected to properties of related nodes

I have Nodes Customer and Product - with a directed relationship TRANSACTION from Customer to Product. Product has the property category. Is it possible to display all the Customers connected to all the categories which they have bought? As though…
D10001
  • 123
  • 1
  • 1
  • 7
0
votes
1 answer

Neo4J Browser Issue: Graph icon missing

I am not able to see the graph icon on the Neo4J browser launched from the Desktop application. Does anyone know how to get that button?
0
votes
2 answers

Neo4j (cypher): How do I find all nodes with a specific relationship?

In a neo4j database with nodes, linked by the 'ARTICLE_OF' relationship, how do I find all nodes with this relationship? Direction doesn't matter. I tried a possible solution from here, but it seems outdated. I swapped SOME_RELATIONSHIP with my…
Queuebee
  • 651
  • 1
  • 6
  • 24
0
votes
1 answer

Neo4j: How to display communities after applying Label Propagation Algorithm (LPA)

I have 565 articles in Neo4j and I ran LPA to obtain clusters. I have the following result: 69 communities. I would like to display all the communities at the same time in Neo4j. I tried several Cypher queries with the property key 'community' but…
LJRB
  • 199
  • 2
  • 11
0
votes
1 answer

Neo4J Connection issues to local project

I am really sorry to ask a simple question like this, but it is getting frustrating. I installed neo4j 4.0.4 on my Windows machine, created a new project as shown in the official tutorial video and set a password for my local graph. Funnily, the…
Uwe Bretschneider
  • 1,211
  • 8
  • 12
0
votes
1 answer

Is it possible to scale a Neo4j node based on the number of it's relationships?

Lets say Node1 has 5 relationships to other nodes and Node2 has 10. Can you set the size of each node based on the number of its relationship to other nodes? So in this example, Node2 would be two times the size of Node1. I saw you can do this…
kaiffeetasse
  • 481
  • 1
  • 8
  • 18
0
votes
1 answer

Neo4j - Return a Pseudo relationship from a cypher

In Neo4j you can return a pseudo node (e.g. return {Name:'dummy node'} return a node with property Name) pretty easily. I use this extensively to check the number of nodes created with Load CSV. How do you return a pseudo relationship? I want to see…
Adarsha
  • 2,267
  • 22
  • 29
0
votes
2 answers

Graph import successfully with Neo4j terminal but not in Browser

I run neo4j-admin to import the database. This is the command set DATA_DIR=D:/Workspace/Research/csv_file neo4j-admin import --database=foo.db --nodes:Issue=%DATA_DIR%/issues_header.csv,%DATA_DIR%/issues.csv…
0
votes
1 answer

Set propertie to related nodes that are already created in Neo4j

I'm using py2neo in Python to run my Cypher queries. I'm trying to create Person nodes and relationships between then. My DataFrame is like this: df >>> id_user name follows.profiles a_123 Mc Marcão <3 [a_134,…
igorkf
  • 3,159
  • 2
  • 22
  • 31
0
votes
1 answer

Creating relationship between two nodes using intermediate table

I'm very new to the Neo4j world so please forgive me if this is a trivial question. I have 2 tables I've loaded into the database using LOAD…
0
votes
2 answers

How to reference ID as param in Neo4J

I have a node with internal id 35831. I run the following code in the Neo4J Browser: :params "id": 35831 match (t) where id(t) = $id return t Expected result: the node Actual result: (no changes, no records) Is this expected behavior or should I…
Dominik Teiml
  • 505
  • 1
  • 4
  • 12
0
votes
0 answers

How to display and show special characters like "ü" ,"ö" "ä" etc. in Neo4j

In my Neo4j graph-database, I have some data with special characters like "ä", "ö" etc. If I start a query, e.g MATCH (v:Verein)-[:plays_against]->(V:Verein) WHERE v.name = "1.FC Köln" RETURN v The query returns no data. How can I fix this…
0
votes
0 answers

How to resolve a neo4j authentication error?

I am a beginner on Neo4j. I had a version Neo4J 2.23 and I migrated to 3.2.14 on a Linux 2.6.18-398.el5 x86_64, which is a remote server. I configured the Neo4j.conf file to my server's IP address, port, and everything else. I run: ./neo4j start the…
dyhia
  • 11
  • 2
0
votes
1 answer

How to set the lable on node in neo4j?

I'm new to neo4j and I'm facing issue to set the node's label. I create a new node using this code. create(s:Student{id:'QWERTY',age:20,first_name:'Sachin',last_name:'Shah'}) return s.first_name AND (without return a node…
Sachin Shah
  • 4,503
  • 3
  • 23
  • 50
0
votes
1 answer

How to set text on the node in neo4j

I want to set the text on the node I have a example,node is created,but it is bare in graph,only a circle without a text. merge(n1 {label:'me'}) return n1 I expect a text on the node. actually,result is like this: bare node image what I expected…
eascape
  • 39
  • 7