Neo4j is an open-source graph database implemented in Java. You can use it directly from Java, all JVM Languages and Python or via the REST API with drivers in any language.
0
votes
0answers
6 views
neo4j authentication extension not finding user
So I have an instance of neo4j 2.0 M3.
I wanted to use the authentication found here
https://github.com/neo4j-contrib/authentication-extension
I added the jars to the plugins folder and added to ...
2
votes
1answer
21 views
Cypher find paths query
Don't have much experience in Cypher paths queries, but it seems that paths are the rational way to do what I want efficiently...
I have the following relevant relationships in my Neo4j:
...
0
votes
1answer
19 views
Index on cypher doesn't update in transaction
If I'm inside a transaction cypher index returns nothing, but if I use SpringRest or commit before run cypher query it returns the node. This is the context: I have an object with an index and I'm ...
0
votes
0answers
28 views
Optimizing GraphClient Connection?
Below you will see my GraphOperations class (written in C# using Neo4jClient) that performs basic Neo4j graph operations. The GraphGetConnection() method connects to Neo4j and returns clientConnection ...
1
vote
3answers
44 views
Error Obtaining Lock (org.neo4j.kernal.StoreLockException)
When trying to create new nodes in an already existing database, I am getting the following exception:
org.neo4j.kernal.StoreLockException.
The code snippit below is the actual line that results in ...
0
votes
1answer
47 views
What do I use as the database path?
I have been searching through documentation on how to create nodes and the only example I find uses this approach
graphDB = new GraphDatabaseFactory().newEmbeddedDatabase( DB_PATH );
What am I ...
1
vote
1answer
22 views
Filter neo4j nodes by subtracting nodes that are returned by index
My nodes have an array property category_ids that contains integers.
I can query for nodes whose category_ids do not match any in the list [1,2,3]:
START node(*)
WHERE NOT(ANY(x in node.category_ids ...
0
votes
1answer
11 views
neo4j: cypher error creating node properties using REST API when property label has blanks
I am receiving an error in both the neo4j webadmin and a javascript app I built. If I create/edit a property label in the webadmin using "+ property" I can have property labels containing blanks. ...
1
vote
1answer
26 views
The difference between Legacy Indexing/Auto Indexing and the new indexing approach in Neo4j
I'm having trouble understanding the difference between the legacy indexing approach and the new indexing approach so perhaps someone could clarify these points for me. My only concern is really how ...
0
votes
4answers
25 views
Get Node ID's in Neo4j using Python
I have recently begun using Neo4j and am struggling to understand how things work. I am trying to create relationships between nodes that I created earlier in my script. The cypher query that I found ...
0
votes
2answers
51 views
query gremlin through java
I have to use a query gremlin in java, and I don't know how can I do, because I've tried to follow the instructions in
https://github.com/tinkerpop/gremlin/wiki/Using-Gremlin-through-Java but I have ...
0
votes
1answer
15 views
Global Graph Operations gives Node Proxy not Node
Ran this code
String DB_PATH = "path/to/data/graph.db"
GraphDatabaseService graphDb = new EmbeddedGraphDatabase(DB_PATH)
for(Node _node: ...
1
vote
0answers
18 views
Can't connect to neo4j database on port 80
I managed to get neo4j up and running on port 80 on another machine.. I am trying to use django and neo4django to connect to the database.
I am getting the error : No such database exists: %s
This ...
1
vote
0answers
22 views
Using Neo4jTemplate to save data in Rest configuration is too slow
I am working on the project with Spring and Neo4j database. I configured my Neo4j database to be rest neo4j. This is the configuration:
<neo4j:config graphDatabaseService="graphDatabaseService" ...
0
votes
1answer
35 views
neo4j 2.0 having trouble starting
I have my DB_Path
String DB_PATH = "path/to/data/graph.db"
then I am running
GraphDatabaseService graphDb = new EmbeddedGraphDatabase(DB_PATH)
In which I am met with (full exception)
Exception ...
0
votes
2answers
24 views
neo4j 2.0 not creating node but running successfully
Have a Neo4j 2.0 enterprise instance running. Using the jars from the lib directory to run this groovy script
import org.neo4j.graphdb.GraphDatabaseService
import org.neo4j.graphdb.ResourceIterable
...
1
vote
1answer
39 views
Cypher Query Timeout for Complex Query with Weights
I have a fairly simple graph. It only has around 100 nodes and 400 relationships. I am trying to run a variety of cypher queries that rank the results based on the existence of certain ...
-1
votes
1answer
31 views
when using neo4js rest api: deleted properties came back
When I use the Neo4j REST API, there seems to be a bug:
A node was indexed by some index. After I deleted some properties of that node, unindex it, and then index it again, those properties came back.
...
1
vote
1answer
30 views
Using MERGE with properties via REST
According to the sample code at http://docs.neo4j.org/chunked/2.0.0-M03/rest-api-transactional.html I'm trying to use the MERGE statement.
But when I apply the following statement:
{
...
0
votes
1answer
23 views
traverse over all of a label
I'm using Neo4j 2.0 milestone 3.
Currently have this working code:
String DB_PATH = "/usr/local/Cellar/neo4j/community-1.8.1-unix/libexec/data/graph.db";
GraphDatabaseService graphDb = new ...
0
votes
0answers
11 views
Unable to compile Neo4j fdw source code
I downloaded Neo4j fdw source code from http://wiki.postgresql.org/wiki/Foreign_data_wrappers but I'm not able to compile the source code.
Below are the errors I got, when I tried to compile:
...
0
votes
1answer
25 views
Unable to start Neo4j on port 80
I am using CentOS.
I am unable to start neo4j on port 80. Starting on port 7474 works, but for my case, my school only allows me to expose port 80 to the public. I am having trouble starting it: it ...
0
votes
1answer
28 views
Condition while update cypher query
I can't find simple solution to perform conditional update in one Cypher query.
Lets say I have Game node and the game has State property...
I want the ability to do the following:
If game.state = ...
0
votes
1answer
19 views
Neo4j TransactionEventHandler Relations
I'm using a TransactionEventHandler in Neo4j as a form of trigger. Basically, anytime something updates, I want an event fired. It's work well so far, but I'm having an issue with deleted ...
1
vote
1answer
29 views
Create node with unique relationships in Neo4j
I'm a noob Neo4j user trying to learn with Neo4j Milestone 2.0.0-M03. I'm trying to create nodes that are unique, not by the properties that they hold, but by the relationships that they have.
I ...
0
votes
1answer
26 views
what should be return type of a query which fetches 2 columns in spring data neo4j?
I have following query which i use through @Query annotation with GraphRepository in spring data neo4j. So to get a result i declare return type of method as List
@Query(value = "START ...
0
votes
1answer
22 views
neo4j v2.0.0-M3 REST API batch insert
I use batch insert for adding nodes using the RESY API I know how to do this before 2.0, but now I'm starting to use the labeled nodes, and I cant get it to work. I don't find how I can add the label ...
0
votes
1answer
27 views
How to store historical data in neo4j?
I need to store historical data. It's meant to work like subversion:
So I have a model with a number of objects. Every time an object is updated a new revision is created. Yet I need to be able to ...
0
votes
0answers
32 views
Spring Data x Neo4J embedded configuration
my application just tests if the environment is basically working. therefore i set up a testclass corresponding to the "Hello Worlds" example which can be found in the gitHub repository of ...
0
votes
1answer
41 views
Cypher query DISTINCT
I have simple use case but still can't find the solution....
I have Questions nodes each question has category , each category can have many questions.
I want to do the following:
retrieve 5 ...
0
votes
2answers
25 views
advice for choosing linux filesystem for neo4j
I'm looking for advice for choosing and configuring Linux filesystem for storing neo4j database.
Of course one should always test with ones own workload, but in general, is there any advice regarding ...
1
vote
1answer
24 views
Neo4j 2.0 - summing relationship results from cypher query
new to Neo4j.
I have some nodes connected by relationships that have a "weight" property with a number. I am trying to get an average of the weight properties for all relationships returned in the ...
0
votes
2answers
65 views
+50
Unable to run backup script shipped with Neo4j Enterprise 1.8.2
Operating System: Windows 2012
Neo4j Version: 1.8.2 Enterprise
I am having trouble using the Neo4jBackup.bat script to backup the Neo4j server. I am running the following command from an ...
0
votes
1answer
32 views
add label to node using embedded API
Using Neo4j 2.0 milestone 3
Currently have this code (working code)
String DB_PATH = "/usr/local/Cellar/neo4j/community-1.8.1-unix/libexec/data/graph.db";
GraphDatabaseService graphDb = new ...
0
votes
2answers
25 views
Cypher Language list of reserved words?
Is there a list of reserved words for Neo4j Cypher? I'd like to avoid any pitfalls others have discovered, reserved words have bitten me in the past with other projects.
0
votes
0answers
12 views
why does adding a second full text index statement to START return 0 results in Neo 4j 2.0-m01
This cypher query correctly returns > 0 results
START publishers=node:app_fulltext('Name:"Facebook"')
MATCH publishers-[:InstanceOf]-app
RETURN app.Title AS Title;
However if I add a second start ...
1
vote
3answers
67 views
What values are allowable for properties in graph databases (i.e. Titan, OrientDB, ArangoDB, Neo4J)?
I'm pretty new to the NoSQL scene. I'm trying to understand the capabilities and differences between different graph databases. My understanding is that Orient and Arango use documents as vertices ...
0
votes
0answers
13 views
Problems restarting Neo4j 1.8.1
I am using Neo4j version 1.8.1.
When I stopped the Neo4j service and started it up again, it will not respond at all.
I am unable to connect to the database using the Neo4j browser even though the ...
0
votes
2answers
23 views
Returing the most current league in cypher
I've the League node entity as below
@NodeEntity
class League
{
private Date startDate;
}
I want to return the most recent league for which the below cypher is working fine when executed from the ...
0
votes
1answer
16 views
Neo4jClient is not returning properties for a node in .Return
I am trying to use Neo4jClient (and am new to C#) to build and retrieve data from Neo4j. First, I build the items and relations to a search:
NodeReference<Search> searchNode = ...
0
votes
0answers
22 views
Creating a Spring Bean for Neo4j Graph Database
I noticed that in the latest stable version(1.9) of Neo4j, the recommended way of creating a GraphDatabaseService is through the GraphDatabaseFactory and the HighlyAvailableGraphDatabaseFactory.
...
0
votes
2answers
40 views
Query unique pair of nodes when pair orders is not important in cypher
I am trying to compare users with according to their common interests in this graph.
I know why the following query produces duplicate pairs but can't think of a good way in cypher to avoid it. Is ...
1
vote
0answers
49 views
Neo4j: deadlock memory leaking
I have a large number of contacts and relationships I'm trying to insert (many millions). To speed this up I figured I would batch them up and then have multiple threads insert them concurrently. This ...
0
votes
0answers
30 views
Unnecessary updates on relationships auto-indexes
I am using Neo4j 1.9, and I have an auto-index configured on relationships for a property A.
(neo4j.properties)
relationship_auto_indexing=true
relationship_keys_indexable=A
When using a Gremlin ...
0
votes
1answer
58 views
Neo4j: From given start node find all paths that touch all relations
using Neo4j, I'm working on a very simple model that consists of five nodes A..E and eight relations between them. For a given start node I want to get all paths that touch every relation of the ...
0
votes
1answer
23 views
converting a NodeProxy to NodeEntity in spring-data-neo4j
I have the below Cypher query. It returns a list of players and list of all the leagues played by each player. Now For each of the returned players, I would like to create the Person NodeEntity ...
1
vote
1answer
41 views
Cannot bind GraphRepository Neo4j to Controller in Spring
I am using Spring with Neo4j lib to make REST Web application which will manipulate data on Neo4j database. I am struggling with configuration of my project I cannot manage to start it in Tomcat.
My ...
1
vote
1answer
31 views
Is two-step query with shortestPath() the most efficient solution to find shortest paths from one node to multiple nodes?
I'm still learning the ropes of Neo4j and trying to decide if it is the right tool for the problem I need to solve. My goal is to calculate distance from one node to every single node in a certain ...
1
vote
1answer
21 views
Neo4j order by relationship count
I'm new to neo4j and tried to implement a graph with some success.
Now I'm trying to make a query ordered by the number of relationships.
For example.
START n=node(*) MATCH (n->[r]->()) ORDER ...
0
votes
1answer
14 views
Bulbs - Neo4J - Heroku Config Error?
I'm using bulbs to setup a Neo4J app on Heroku. Locally it runs fine, but when I deploy it on heroku, it raises the error part in the following code:
#heroku config:get NEO4J_URL
...



