Cypher is a graph query language for Neo4j. For ciphers as in encryption, see cipher.

learn more… | top users | synonyms

0
votes
0answers
3 views

Neo4j / Cypher : order by and where, know the position of the result in the sort

Does it possible to have an order by "property" with a where clause and now the "index/position" of the result? I mean, when using order for sorting we need to be able to know the position of the ...
0
votes
0answers
17 views

using multiple match clauses doesn't return any result in neo4j cypher query

I am executing the following two queries and i am getting some result. First query START person=node:NODE_TYPE(NODE_TYPE='PERSON') MATCH ...
0
votes
0answers
13 views

Neo4j / REST concurrency issue

So I tried to use the new merge syntax to reduce the amount of operations I need to ensure that two nodes exist and link them. Here's the basic idea: merge (first:Label{key:'value'}) merge ...
0
votes
0answers
19 views

Neo4j 1.9.RC2, cypher sorting and ranking

i am using Neo4j 1.9.RC2 and i test the ORDER BY with WITH. What i want to do is to generate a dynamic ranking and store the current sort index into each node sorted. i have something like : ...
1
vote
1answer
20 views

Neo4j/Cypher - how do I get all dinstinct label triples?

With the introduction of labels, neo4j got a neat mechanisms for managing entities. Now, let's assume for a moment that we have a generic graph with lots of different entities and would like to find ...
1
vote
0answers
26 views

Simulating a Markov Chain with Neo4J

A Markov chain is composed of a set of states which can transition to other states with a certain probability. A Markov chain can be easily represented in Neo4J by creating a node for each state, a ...
0
votes
0answers
30 views

Return JSONObject from server plugin in neo4j

I am attempting to create a server plugin in neo4j to make a specific query and wish to return, not one iterable, but two iterables of Node. I saw that this is not possible according to the neo4j ...
0
votes
1answer
14 views

“Cannot convert lambda expression to type 'string' because it is not a delegate type” Neo4jClient Query

I am trying to put a where clause in my Neo4j cypher query to return some nodes, this is the query im trying to perform: start n = node:node_auto_index(Name = "Contact Details") Match (n)--(x) Where ...
2
votes
1answer
32 views

Neo4j- binning with cypher

has anyone found a way to do simple binning with cypher? I have a property on the nodes and I would like to specify a (start, stop, step) and have cypher return a list of 'bins' of nodes. I see there ...
2
votes
1answer
16 views

Cypher 2.0 - MERGE operation

Are there any prereqs to use the merge operation? The merge examples from the Neo4j documentation such as: merge (robert:Critic) RETURN robert, labels(robert) return: An unknown error occurred, ...
1
vote
1answer
33 views

What is the cypher query for one node but not another?

I have a graph that looks like this - customer-hasOrder->order order-hasLineItem->orderLineItem orderLineItem-hasService->service orderLineItem-providedOn->providedOnDate ...
1
vote
2answers
42 views

Neo4j doesn't look for multiple starting points if one of them is null

In the following scenario, node "x" does not exist. start x=node:node_auto_index(key="x"), y=node(*) return count(x), count(y) It seems that if any of the starting points can't be found, nothing is ...
0
votes
1answer
25 views

Neo4j: get index property 'name' in cypher query as a return value

Hi I'm new to neo4j and cypher. I've built my database such that there are multiple depths in the graph you can start at. In my example the graph is a tree the root node is an index and nodes at level ...
2
votes
2answers
39 views

Cypher Order By Number of Paths

Let's say I have a graph of movies and directors, where movies are connected to each other by co-viewership. I want to find similar directors, i.e. directors whose films tend to be watched together. ...
0
votes
1answer
15 views

Will ExecutionEngine.execute(String,Map<String,Object>) prevent “NoSQL Injection Attacks”?

So, I've used PrepareStatements in SQL based databases via JDBC to prevent against SQL injection attacks. I want to know if using Neo4J's Java API ...
-2
votes
1answer
32 views

How to perform regular expression search on cypher with start clauset? [closed]

How to find a node that starts with any letter for eg a,f,anyword. I need to implement instant search using neo4j.
0
votes
1answer
69 views

Find friend that has the highest number of common friends.. and returning his/her friends that are not in your list

I need to find most connected friend's friend node with help of a Cypher query. In the example below, given B, I need a query to return the "Salad" node but not the "Bacon" node. For this particular ...
2
votes
2answers
29 views

Clarification on multiple MATCH patterns in a Cypher query

In the below query, does the 2nd match pattern john-[r?:HAS_SEEN]->(movie) run on the result of the first match john-[:IS_FRIEND_OF]->(user)-[:HAS_SEEN]->(movie) . I am trying to understand ...
0
votes
1answer
9 views

Sorting a collection in Cypher and ordering results in the same order as the collection

I'm new to Cypher and I'm trying the following. I have a graph where the relationships have a numeric property. I want to write a query like: start n=node(*) match n-[r *1..3]->m return n,m, r ...
0
votes
2answers
26 views

how to use two match statements in a cypher query

I'd like to combine two requests into one query and I'm not sure what happens when 2 match statements are used in a single cypher query. say I have a list of friends and I'd like to see a list of my ...
0
votes
1answer
43 views

Returning multiple nodes in cypher with Index lookup

I have the following cypher query being called multiple times. start n=node:MyIndex(Name="ABC") return n Then somewhere else in the code start m=node:MyIndex(NAME="XYZ") return m My data base is ...
1
vote
1answer
36 views

Auto indexing not working

I am having some trouble getting my auto indexing to work. While the neo4j service was stopped I changed the neo4j.properties file and set: #node_auto_indexing=true Then typed my indexing keys like ...
0
votes
1answer
70 views

Count relationship pairs in Neo4j

I'm starting dealing with Neo4j so I'm not really proficient on this topic. In figure below I have 2-mode (bipartite) graph where green node presents "document" and red node presents "term" which ...
0
votes
1answer
34 views

neo4j Multiple optional paths - cypher

I'm tracking if a user has liked and or voted on a object in a list of objects others posted.. I can get either likes and votes, but not both. (A person can both like and vote on an object and these ...
0
votes
1answer
24 views

No way to use in cypher the term case insensitivity = ~ (? i), when I'm using parameter?

I tried this way but it did not work. params.put("name", g ); final QueryResult<Map<String,Object>> result = engine.query("MATCH a:Conceito --> b:Livro WHERE a.nome =~'(?i){name}' ...
0
votes
1answer
32 views

Neo4j Auto indexing issues

I have tried auto indexing and have set my neo4j.properties file to the following: # Autoindexing # Enable auto-indexing for nodes, default is false #node_auto_indexing=true # The node property ...
0
votes
1answer
33 views

neo4j cypher: multiple queries using WITH keyword

I'm trying to run a query which has two parts start cat=node(21) match cat-[:HAS_KEYWORD]->(word)-[:FOUND_IN]->doc return doc this query works fine and return the results start cat=node(21) ...
0
votes
0answers
54 views

How to find distinct nodes in a Neo4j/Cypher query

I'm trying to do some pattern matching in neo4j/cypher and I came across this issue: There are two types of graphs I want to search for: Star graphs: A graph with one center node and multiple ...
0
votes
1answer
37 views

Cypher query with logical operators

As a follow-up to my previous question I would like to know how to use logical operators AND, OR and NOT when performing an index query. Using the same book club database scenario what would the ...
0
votes
1answer
128 views

direct neighbor relationships cypher query performance

This question is similar to these two: 16283441, 15456345. UPDATE: here's a database dump. In a db of 190K nodes and 727K relationships (and 128MB of database disk usage), I'd like to run the ...
0
votes
0answers
38 views

Neo4j Rest Calls Using Java( not in embedded mode)

I am actually using the community plugin in Neo4j and trying to make POST requests through java to query neo4j server. I am always getting a java.io.IOException: Server returned HTTP response code: ...
0
votes
1answer
36 views

Neo4j / Cypher create node if missing

I'd like to bundle a whole bunch of operations in as few requests as possible. The logic behind is should be the following: check if head with key=value exists, create if it doesn't check if tail ...
0
votes
1answer
38 views

How to use cypher to create relationship between two nodes given their attributes in Neo4j

I would like to do something like this START n=node(*), m=node(*) where has(n.userid) and has(m.userid) and n.userid='0' and m.userid='3' create (n)-[FRIENDSHIP {status:2}]->(m) ; However, ...
1
vote
1answer
45 views

Cypher-QueryDSL: 'My “Q” classes cannot be resolved' compile error (e.g. QPerson)

I'm trying to learn how to use Neo4j cypher with QueryDSL. So I downloaded the sources from the neo4j/cypher-dsl GitHub repository, and imported the project into eclipse as a Maven Project. However, ...
1
vote
2answers
55 views

Cypher query to find nodes that have 3 relationships

I figured out how to write this query when I am looking for 2 relationships, but not sure how to add more relationships to the query. Assume you have a book club database with 'reader' and 'book' as ...
1
vote
2answers
33 views

Neo4j: retrieve all non-referenced nodes

I have a very simple data model with source-[:link]->target. I'd like to find out all the nodes, which have no incoming links e.g. the "roots" of my data model. How do I do that in Cypher?
0
votes
0answers
40 views

Neo4 giving error:“ Uncaught exception 'Everyman\Neo4j\Exception' with message 'Unable to retrieve server info [500]:”

require('phar://neo4jphp.phar'); $client = new Everyman\Neo4j\Client(); if($client) { echo 'Connected'; } i am using neo4j version 1.9 RC1, i am able to access server via myip:7474, Curl ...
1
vote
0answers
59 views

Spring Data Neo4j - Adding custom analyzers to lucene indexes (PerFieldAnalyzerWrapper)

Is it possible to customize lucene indexes in spring-data-neo4j, such that my indexes will be using custom analyzers? In particular, i want to use the PerFieldAnalyzerWrapper analyzer, so i will be ...
0
votes
1answer
69 views

Spring Data Neo4j - Combining Fulltext and Simple Indexes in the same Cypher query

I wonder how can i build a Cypher query that will combine Fulltext and Simple indexes using spring data neo4j. Consider the following node entity: @NodeEntity public class SomeObject { public ...
0
votes
1answer
45 views

neo4j stop traversal on condition (cypher)

I'm just starting out so pardon me if this is a stupid question but I was wondering how to stop traversal of a tree on a node property value. For instance. If you have a tree type graph with nodes ...
1
vote
1answer
21 views

ExecutionEngine not recognizing parameter

I'm using Neo4j 1.8.RC1, and trying to generate the clustering coefficient for nodes in my graph. I've got the following code, which as far as I can tell is working on a Linux system, but does not ...
1
vote
2answers
73 views

Neo4j CYPHER node_auto_index for range lookup

I'd like to know if there's any way how to use auto indexing for range lookup. If I query something like START age=node:node_auto_index(age<20 and age>10) RETURN age; it returns Exception ...
0
votes
1answer
29 views

use aggregate functions in the WHERE clause (Neo4j)

How do I select all nodes that are connected to node(2) [from] with more than one path? START from=node(2) MATCH p=from-->to where count(p) > 1 return from,to To Neo4J team : Any plans to ...
0
votes
1answer
34 views

More complex Cypher Query as TraversalDescription

I don't know, how to build the following cypher query as a TraversalDescription in Java: START container=node(startContainerId), condition=node(startConditionId) MATCH ...
0
votes
1answer
61 views

Cypher query to list all disconnected graphs Neo4j graph DB?

The Neo4j graph database holds roughly 50,000 nodes and > 50,000 relationships. There is a main graph that contains most nodes. But there are several graphs that are not (yet) connected to the main ...
0
votes
0answers
52 views

Spring data neo4j Cypher, search between two longs

Actually I try to get list of objects via user id, startDate and endDate, dates are stored as long. @Query( "START email=node:__types__(className='com.backend.core.neo.entities.Email') " ...
1
vote
2answers
84 views

how to use auto-indexes with neo4j 2.0 labels

How should auto-indexes be handled with the new label feature in neo4j 2.0. Will creating an auto-index, say "name" in a user object continue to create a generic name index for all objects or is ...
2
votes
2answers
58 views

neo4j - how to match only first n relations

is there a default way how to match only first n relationships except that filtering on LIMIT n later? i have this query: START n=node({id}) MATCH n--u--n2 RETURN u, count(*) as cnt order by cnt ...
0
votes
1answer
62 views

CypherQuery returns empty result in JavaEmbedded, but correct result in Neoclipse

I have a strange problem with a cypher query. The query works fine in Neoclipse and returns the correct result. But in java embedded mode the result is empty. I can't figure out the problem. Is there ...
0
votes
1answer
46 views

Cypher QL doesn't execute atomically query

I'm starting to work with Neo4j and I noticed a really bad behaviour when updating a property on a node I am reading at the same moment. The clojure code I wrote use Neocons library to communicate ...

1 2 3 4 5 7