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.

learn more… | top users | synonyms

0
votes
1answer
120 views

RestAPI and Neo4j

Can anyone help with these Neo4j (1.9) errors and the RestApi using JDK 1.6 and Heroku. The objective of the code is only to demo the functionality of using cypher and Neo4j with Java. I understand ...
0
votes
1answer
41 views

Can the Neo4j HA cluster 1.9 configuration be setup so only part of a graph database is part of the cluster

Is it possible to configure and/or code so only parts of the graph database is part of the cluster?. So for instance only nodes with a relationship of a specified type will be part of the HA cluster – ...
0
votes
1answer
73 views

How to verify that specific paths do not exist in cypher query

I would like to get nodes, which do no have a specific relation (a relation with specific properties). The graph contains entity nodes (the n's), which occur at specific lines (line_nr) in files ...
0
votes
1answer
66 views

heroku and neo4j access via a Java servlet

I am getting started using Heroku and Neo4j. I have a servlet which runs locally to insert some nodes and create a relationship between them. When I use the same code at Heroku I get no error but just ...
0
votes
1answer
70 views

extract map from vertex and return an array of maps via REST-API

I am trying to put all properties of a vertex in a map and add additional values to this map. Later, I want to return this map as a JSON response. In general I find the REST-API of neo4j a bit verbose ...
0
votes
1answer
138 views

Performance of Neo4j

I have learnt neo4j can traverse 1 million records in just 2.7 seconds or in lesser time.I am creating a website which use ajax for lookup words entered by user against oxford dictionary(present in ...
0
votes
1answer
28 views

indexes not populated in dr who sample database

I downloaded the dr who neo4j sample database from here http://www.neo4j.org/develop/example_data I can traverse/query nodes, relationships, and properties. But the indexes seem to be empty. For ...
0
votes
1answer
69 views

Non-clean shut down and dirty log for neo4j

I have been keep getting this error while rebuilding index for my production db: org.neo4j.kernel.impl.transaction.TxManager commit ** [out :: XXX] SEVERE: Commit failed ** [out :: XXX] ...
0
votes
1answer
40 views

Neo4j - Eager load dynamic relationships for a node

I asked a related question here. I found that everything goes fine for normal relationship entity like this: @RelationshipEntity(type="REL") public class Rel { @GraphId private Long id; ...
0
votes
1answer
75 views

Neo4j: How to lock the entire database

In mysql, you can lock the entire database by issuing: FLUSH TABLES WITH READ LOCK; To unlock a mysql database, issue the following: UNLOCK TABLES; Are there two such commands for neo4j (lock and ...
0
votes
1answer
56 views

Neo4j Lucene integration layer - does it support soundex/spelling capabilities?

We are implementing text searching with wild cards using Lucene backed indices in Neo4j and would like to add soundex and spell checking capabilities. Has anyone done this? We would like to use the ...
0
votes
1answer
73 views

What is the best use case for Neo4j Spring Data?

I'm using Neo4j for my social network analytics, I'm wondering whether do I need to use Spring Data. All the properties of a node are dynamically provided by the client, In spring data, the Neo4j Node ...
0
votes
1answer
177 views

Neo4j rake aborted! No such file or directory - wget http://dist.neo4j.org/neo4j-community-1.7-unix.tar.gz

Trying to install and run a simple Neo4j app from Max Demarzi's "d3_js_intro" app on GitHub. Issuing the command rake neo4j:install, I get the message shown below. Questions: Q: What is the root ...
0
votes
1answer
65 views

Set Neo4j Uniqueness to NODE_PATH with Neo4jClient

In order to prevent my path from including the same node more than once, I'm looking to be able to set the uniqueness to NODE_PATH either using the .Net Neo4jClient or at the database level in one of ...
0
votes
1answer
70 views

Torquebox Backgroundable Method calls

I am using Torquebox to build a Rails application with an embedded Neo4j instance as the datastore. I've read multiple blogs that have said that Torquebox is a great for this because the ...
0
votes
1answer
77 views

Neo4j Configuration Issue Regarding HA Setup

I am setting up a 3 node HA Neo4j cluster on Eucalyptus (which is similar to using AWS). All the nodes come up just fine (in the default standalone mode which you can see in the logs), but after ...
0
votes
1answer
61 views

Neo4jPhp relations

I'm playing around with Neo4j in my php project. I currently created around 100.000 nodes but I wonder how to put some random relations to do some tests on the setup concerning speed. The nodes have ...
0
votes
1answer
147 views

Cypher (Neo4j) - Getting multiple relationships and children of the same node

I am pretty new to Cypher, so bare with me. Is it possible to get multiple 'children' nodes by relationship. For example, given the following query: START event=node(4) MATCH ...
0
votes
1answer
97 views

Neo4j db shutdown: Unable to close logical log

The neo4j db is not cleanly shutdown when I stop my web application by stopping tomcat. I get the following exception always and the neo4j does database recovery at next application start up. The ...
0
votes
1answer
33 views

Is it possible to reference custom code in the Where-clause of Neo4J's Cipher Query Language?

Is it possible to use Neo4J's Cipher Query language (or another declarative language) but still reference custom code snippets (for instance to do custom WHERE-clauses based on, say, the result of a ...
0
votes
1answer
86 views

Neo4J Remote client accepts

Are the only two valid options for securing the remote client accepts via the org.neo4j.server.webserver.address property in the conf/neo4j-server.properties file to only accept connections from the ...
0
votes
1answer
109 views

working with neo4j

Well i am working in gephi and there i have a plugin through which i have exported my graph to neo4j. Once exported it comes out to be folders in which there are some 10-12 files. Now i have ...
0
votes
1answer
132 views

Neo4j - Adding logic to graph traversal

My question in short - is whether I can modify the traversal logic used by Neo4j - how to have a control over which edges are traversed and which aren't, during the reachbility computation. Full ...
0
votes
1answer
96 views

Neo4j graphDatabaseService blows up on context initialization if remote DB is down

When the Neo4j config is initialzed, and the remote DB is not running, the server will not start ... <neo4j:config graphDatabaseService="graphDatabaseService" /> <bean ...
0
votes
1answer
67 views

IntelliJ, with neo4j, highlights good methods with red (“cannot resolve”)

I'm running neo4j's "imdb" sample project. It compiles without errors and runs fine. However, the editor will mark as red ("cannot resolve") some neo4j methods, such as Actor.getRelationshipTo() ...
0
votes
1answer
107 views

Optimize cypher query

How can I optimize this cypher query? It's 3-4 times slower than a similar query using Gremlin. START movie=node:vertices(movieId="100") MATCH ...
0
votes
1answer
187 views

Spring Data Neo4j is quite slow when importing

can somebody explain to me why it takes 6 to 10 seconds to import an entity into Neo4j? I'm using Spring Data Neo4j with a custom Repository, that has Neo4jTemplate @Autowire-d. So when I'm ...
0
votes
1answer
130 views

DataRetrievalFailureException: '__type__' Not Found in Spring Data Neo4j

I have a Neo4j REST database set up and running and I was trying to access it using Spring Data Neo4j. The following code: MyObject obj = myObjectRepository.findOne(1234L); throws the following ...
0
votes
1answer
35 views

can i get the average number of users in all groups and then return groups with more users in cypher query in neo4j?

if I wanted to find the group with the number of users more than average number of users i added the where clause, but we can't use aggregates in where.... here is my cypher query: ...
0
votes
1answer
174 views

How to open Neo4J Webadmin to remote control?

I have installed a Neo4J instance on my server on port 7474. My domain is also using that server and I want webadmin to be used remotely with a username and a password like this: example.com:7474 ...
0
votes
1answer
90 views

multiple gremlin commands combined as one

im using nodejs, neo4j with node-neo4j and trying to put multiple gremlin command together and im stuck with this problem if i execute the commands one after another like x = [] as Set y = [] as Set ...
0
votes
1answer
38 views

Getting different (and incorrect) results runing the same cypher query on identical DB schemas

I'm running the following cypher query on two identical neo4j DB schemas: START dave = node(7) // dave's friend who lives and attends an event in the same city MATCH ...
0
votes
1answer
83 views

How to get all relationship types in neo4j DB using blueprints?

I'm using the blueprints API with a neo4j DB. Is there a way in blueprints to retrieve all the relationship types that exist among the nodes in the DB?
0
votes
1answer
112 views

neo4j not reusing existing vertex in cypher create unique query

A portion of my neo4j graph represents objects, their values, and the attributes associated with those values. To use common programming syntax, I'm persisting something like the result of: ...
0
votes
1answer
68 views

Neo4j+Gremlin : Trouble with T.gte and floating point node attributes

For a type of node in my graph, attribute values for an attribute(named 'some_count') is either missing or an integer or a float. I'm trying to write gremlin to filter these nodes based on minimum ...
0
votes
1answer
112 views

Spring Neo4j Saving MultipartFile

I'd like to know what's the best way to store a MultipartFile (org.springframework.web.multipart.MultipartFile) field into Neo4j db. It seems I should convert it ...
0
votes
1answer
152 views

How to use configure Lucene Standard Analyzer in neo4j full-text api via REST

How can I set the analyzer to the standard analyzer instead of the white space analyzer in a full-text index in Neo4j via the REST api. I see that there is an "analyzer" property that I can ...
0
votes
1answer
458 views

Neo4j spatial php example

I'm looking for a very basic example of using neo4j spatial features from php, preferably with the use of this library neo4jphp i want to store a list of venues with their latitude and longitude how ...
0
votes
1answer
119 views

[Neo4j] Impermanet database stored in filesystem

there's a problem with my Neo4j-Test-Setup-Environment and the org.neo4j.test.ImpermanentGraphDatabase... I have a class, TestGraphPopulator, for setting up some dummy data for my unit tests. Because ...
0
votes
1answer
126 views

spring data neo4j ignoring @Transient hibernate annotation?

In one of my pojo i have used @RelatedTo(type = "User") @Transient private Set<User> users = new HashSet<User>(); which is not mapped with Hibernate, to make hibernate ...
0
votes
1answer
128 views

Neo4j: Step back in traversal

Let's assume a very simple example graph of people (as nodes) and KNOWS- and FRIEND_OF-relationships inbetween. Now I want to get every node that KNOWS a random person and is FRIEND_OF (this or) ...
0
votes
1answer
319 views

How to build a custom Lucene index for Neo4j graph?

I am using Gremlin and Neo4j to manipulate the ENRON dataset from infochimps. This dataset has two types of vertexes, Message and Email Addresss and two types of edges, SENT and RECEVIED_BY. I would ...
0
votes
1answer
75 views

Threadsafe domain model getOrCreate in SDN?

Working with SDN 2.1.0.BUILD-SNAPSHOT Is there a Domain-level, threadsafe way of executing a getOrCreate? I have @NodeEntity public class ResourceEntity extends Entity { @Fetch ...
0
votes
1answer
87 views

apache2 redirect app to neo4j webadmin?

I Have a domain neodb.sample.com vhost in apache2. And i would want to redirect to neo4j webadmin (http://localhost:7474/webadmin) and also preserve the url to neodb.sample.com. I'm not sure how to ...
0
votes
1answer
531 views

Neo4j Web Admin how to display relationship properties?

I've generated a Neo4j graph and created visualization of the graph using the 'Style' rules on 'Data Browser'. I was able to display the properties of the Nodes. It looks like the style rules can ...
0
votes
1answer
169 views

SpringData Neo4J - repositories do not alter @GraphId?

I upgraded to Spring 3.1.2, Neo4J 1.8.RC1 and SpringData 2.1.0.RC3 and I run into the following issue. Before explaining the problem, here is part of my application context: <!-- Neo4J --> ...
0
votes
1answer
244 views

Is Neo4j's Cypher query language open-source?

what is the status of the Neo4j's language Cypher? I really like it, but I would like to avoid the Neo4j lock-in. Are there some other Cypher interface like there are in Grmelin? Regards
0
votes
1answer
102 views

Determine security in an ACL using Neo4j and Gremlin

I'm researching Neo4j to compare it's performance for implementing an access control list. It seems like this is a great fit. Here's an article from a few years ago describing this exact use case. ...
0
votes
1answer
178 views

Problems restarting neo4j 1.7 server

I am trying to restart my Neo4j instance and see no errors in either my messages.log or console.log. I do see recovery notices in messages, however my start script always returns: waiting for server ...
0
votes
1answer
106 views

Performance issues while creating Index on multiple fields in Spring data neo4j

I have created index with multiple fields in below way, Class node { @Indexed(indexName="index") String name; @Indexed(indexName="index") String location; } I have a requirement where user can ...

1 4 5 6 7 8