[Neo4j] Which linux server: Debian 9 or Ubuntu 16?

2018-02-22 Thread Christian Perugini
Hi all, I have to choose between Debian 9 or Ubuntu 16 for a fresh install of Ne4j on a server. I know they are pretty much the same thing, but should you choose which one would you pick? And why? Thanks Christian -- You received this message because you are subscribed to the Google Groups

[Neo4j] Does the neo4j cypher shell query on a subset of the DB?

2018-02-22 Thread YuLing Chen
Hi All, I'm new to neo4j and was wondering if the cypher shell only queries on a subset of the DB or any query sent from the cypher shell would apply to the entire DB? The reason I'm asking is that when my dataset is big (about 957,440 nodes, and 770,455 relationships), the same query returns

Re: [Neo4j] Does the neo4j cypher shell query on a subset of the DB?

2018-02-22 Thread 'Michael Hunger' via Neo4j
Nope. Full db. Can you share your query and your domain model? Feel free to join neo4j.com/slack for quick answers. Michael On Mon, Feb 19, 2018 at 3:00 AM, YuLing Chen wrote: > Hi All, > > I'm new to neo4j and was wondering if the cypher shell only queries on a >

Re: [Neo4j] Match the node on the basis of properties values

2018-02-22 Thread 'Michael Hunger' via Neo4j
You only returned `u` so a single node if you then double click that it expands all the connected data. If you want to return your query results do `RETURN *` On Thu, Feb 22, 2018 at 11:04 AM, wrote: > >

[Neo4j] Re: Which linux server: Debian 9 or Ubuntu 16?

2018-02-22 Thread Harold OLLIVIER
Personnaly I've chosen to deploy with docker using the official images. The choice was dictated by the ease of deploy + certainty of being able to be always on the same clean state. Doing so you'll be using Alpine. -- You received this message because you are subscribed to the Google Groups

[Neo4j] Match the node on the basis of properties values

2018-02-22 Thread kchandanssm
I have a large graph I need to find exact graph. My match query is : MATCH (u:SQL_Query)-[:FROM]->(c:from_SQL), (u)-[:SELECT]->(c2:select_SQL)

Re: [Neo4j] Match the node on the basis of properties values

2018-02-22 Thread kchandanssm
My concern is something different I am getting wrong graph on Match only I want that graph who only satisfy my condition not more than that like I want that graph who have only two node connected with where_SQL(Label) but I am getting three node connected to where_SQL Label. -- You received