neo4j Questions

3

I am currently developing a java application (with maven) with an embedded neo4j database. I followed the official guide and also looked at the examples on github. My code looks like this now: i...
Nymphet asked 6/2, 2020 at 22:28

2

Solved

I recently started researching database features of databases. At the moment I'm looking into Neo4j Graph database. Unfortunately, I can't find every bit of information I need. I found most infor...
Institute asked 1/3, 2011 at 8:45

5

Solved

I'm just wanting to know what is exactly Elastic Search. It is said it helps to search data but when I see some webinars it feels like I have to replicate my data in a kind of Elastic datastore... ...
Inconsonant asked 7/1, 2016 at 14:41

6

I tried to log the cypher query generated by the spring data neo4j by using the following log4j configuration: log4j.rootLogger=DEBUG, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender...
Scribbler asked 21/8, 2012 at 7:46

11

Solved

The version I use is neo4j-enterprise-2.2.0-M02 My question is : How can I configure a user (like add a new user, change the password ,etc) in backend or browser, instead of REST API? Can I do it ...
Giefer asked 25/12, 2014 at 9:30

11

Solved

Today I download neo4j-community-3.2.0 in windows, when i start the server, i meet one problem in browser, i meet this problem in neo4j-community-3.1.2 and i had solved it by Ticking the "Do not us...
Wrinkle asked 7/6, 2017 at 7:25

3

Solved

I am using neo4j-driver to connect to neo4j via nodejs but I am facing an issue. It gives the error failed to connect to server even when the database is up and running and can be accessed via neo...
Abubekr asked 14/11, 2020 at 6:47

3

So I've been trying to import an external CSV file into my graphdb. My neo4j is stored in a Docker container. I placed the file in NEO_HOME/import, as implied. I called the LOAD CSV command with "f...
Exine asked 25/4, 2017 at 9:39

2

Solved

Is it faster find a node by id function MATCH (i:Item) WHERE id(i) = 2345 RETURN i or by a property indexed? MATCH (i:Item { name: "Foo"}) RETURN i Profiling these queries I saw id functio...
Aggravate asked 22/1, 2016 at 9:43

5

Solved

When I run this query: START n1=node(7727), n2=node(7730) MATCH n1-[r:SKILL]->n2 RETURN r it gives me a list of duplicate relationships that I have between the two nodes. what do I add to the...
Teratogenic asked 13/8, 2013 at 6:34

3

Solved

I am trying to find a way to check if a certain index exists in cypher schema indexes. I can find all the indexes by using call db.indexes() . but how can I check for a specific index?
Hottempered asked 2/10, 2018 at 12:29

2

I separate my Neo4j database into isolated sub-databases using labels. During development, I frequently need to wipe an entire sub-database clean. Currently I do this with: MATCH (n:myLabel)-[r]-(...
Cuccuckold asked 30/4, 2015 at 13:34

9

Solved

I can't find how to return a node labels with Cypher. Anybody knows the syntax for this operation?
Cynth asked 23/8, 2013 at 8:46

3

Solved

I tried create an docker image of neo4j that already provide some data, when you start an container. For my approach I inherited from the neo4j docker image, added some data via the neo4j cypher sh...
Fenestration asked 23/7, 2018 at 20:2

2

Need to set apoc.import.file.enabled=true in apoc.conf, but cannot find it anywhere.
Thereafter asked 24/4, 2020 at 15:55

4

Computer science student trying to get my feet wet with android development. I am trying to build an app where I am pretty sure a graph database is going to be required (its an app the creates rela...

7

Solved

When I tried to create relationship using spring code, I am getting Transaction manager error. I am using Mysql and Neo4j database in my project. I tries different solution but not able to resolve....
Wilmington asked 19/2, 2018 at 7:38

8

When I run the command "neo4j status" or "neo4j stop" it says "Neo4j not running" however the browser is accessible and I can perform all transactions on the database. Also the database doesn't cha...
Gelsemium asked 6/10, 2016 at 23:16

2

Is there any way to copy or move a relationship from one node to another? I have a situation similar to that here: neo4j merge 2 or multiple duplicate nodes and here: Copy relationships of diff...
Erving asked 16/1, 2015 at 13:9

6

Solved

In SQL: Delete From Person Where ID = 1; In Cypher, what's the script to delete a node by ID? (Edited: ID = Neo4j's internal Node ID)
Ashkhabad asked 26/1, 2015 at 4:19

2

What is the difference between how AWS Neptune stores data internally vs. how Neo4j stores data? From this post, it says Neo4j stores each node with a direct link to its connected nodes, "rela...

2

Solved

Is it possible to connect to AuraDB with neomodel? AuraDB connection URI is like neo4j+s://xxxx.databases.neo4j.io. This is not contained user/password information. However, connection config of ne...
Kettle asked 28/2, 2022 at 4:47

2

Solved

Currently my Java version is 17. Neo4j requires me to install Java 11 or OpenJDK 11, or else it will give the error java.lang.IllegalAccessException: module java.base does not open java.nio to unna...
Edmonds asked 5/10, 2021 at 8:32

9

Solved

How to delete labels in neo4j? Actually I deleted all nodes and relationships, then I recreated the movie database and still the labels I created before appeared on the webinterface. I also tried t...
Stinkstone asked 24/2, 2014 at 9:18

6

Solved

I am using neo4j for one of my project, there's a node which only has a single property as name, I want to get that node using ID, it already has a ID but when I use this code MATCH (s:SKILLS{ID:6...
Liesa asked 13/3, 2014 at 5:7

© 2022 - 2024 — McMap. All rights reserved.