[Neo4j] Neo4j London Meetup

2018-11-01 Thread Dan Keeley
Hi, Attended the Neo4j meetup in London last night, and wrote up my thoughts here: https://dankeeley.wordpress.com/2018/10/25/neo4j-london-meetup/ Always good to know what others thought, and what particular things other people find interesting. Any other attendees here? Dan -- You

[Neo4j] Which internal module responsible for verifying WHERE conditions from cypher?

2017-10-29 Thread Dan Garmoshka
My goal is to add to neo4j engine additional filtering, which will verify every node and relationship for property. This will give ability to break graph to subsets and perform random queries in different "layers" on demand. According to this answer

Re: [Neo4j] Label Performance

2015-06-07 Thread Dan R
, but kind of disconcerting. Any plans to increase the 40-bits? On Sunday, June 7, 2015 at 6:05:19 PM UTC-4, Michael Hunger wrote: > > > Am 07.06.2015 um 23:58 schrieb Dan R >: > > Hi Michael, thanks for your comments that's very helpful. So by 5-bytes, > does that mean

Re: [Neo4j] Label Performance

2015-06-07 Thread Dan R
akes the queries a tiny bit more complicated to search by property, but I guess its not too bad (SuperLabel)-->() vs. (Label {is_super:true})-->() Thanks, Dan On Sunday, June 7, 2015 at 4:30:53 PM UTC-4, Michael Hunger wrote: > > > Am 07.06.2015 um 20:57 schrieb Dan R >: >

[Neo4j] Label Performance

2015-06-07 Thread Dan R
ship but I'm not sure of how bad of a penalty it would be. Thanks for any insights, Dan -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@g

Re: [Neo4j] Generate top "n" for each group via a Cypher query

2015-06-07 Thread Dan
Thanks for the info Michael! Dan On Saturday, June 6, 2015 at 3:48:38 PM UTC-4, Michael Hunger wrote: > Hi Dan, > > you were almost correct. > You use aggregation but with collect and then just select the top 5 n from > that collection: > > match (n:Entity)-[r:IN]->

[Neo4j] Generate top "n" for each group via a Cypher query

2015-06-06 Thread Dan
rder by Count desc limit 5 UNION match (n:Entity)-[r:IN]->(d:Doc), (d)--(n2:Entity) where n.name in ['C'] return n.name, n2.name, count(*) as Count order by Count desc limit 5 But my question is can a single query be done (not using a union) to generate the same top "n"

[Neo4j] Neo4j GraphDatabaseService.isAvaliable(long timeout) - What Is It Actually Checking?

2015-06-03 Thread Dan Barron
We're using v 2.1.7 of the community version of neo4j and we are trying to understand what the call to GraphDatabaseService.isAvaliable(long timeout) is actually checking? And will it detect a Deadlock condition? When navigating into the implementing classes, they seem to all be deprecated - I

[Neo4j] Re: How do I instantiate a GraphRepository interface by hand (without using Spring?)

2015-06-03 Thread Dan Barron
This is how we instantiate a new instance of an embedded graphdb. final GraphDatabaseService graphDB = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder("/your/path/to/database/files") .loadPropertiesFromFile("/your/path/to/database/files/neo4j.properties" ) .newGraphDatabase(); On Wednesd

Re: [Neo4j] Results not appearing neo4j query

2015-05-17 Thread Dan
No, this is not for the movies example, I have imported over 8000 nodes for a project I am working on. It works for lower amounts. Best Regards, Dan On Sun, May 17, 2015 at 8:25 AM, Michael Hunger < michael.hun...@neotechnology.com> wrote: > So, to reiterate again, > > y

Re: [Neo4j] Results not appearing neo4j query

2015-05-16 Thread Dan
I do not get any errors anymore but I still do not get my results in graph form, it is just empty. Best Regards, Dan On Sat, May 16, 2015 at 11:31 AM, Michael Hunger < michael.hun...@neotechnology.com> wrote: > Oh sorry I was confused > > This is for 2.3-m1 > > I though

Re: [Neo4j] Problem starting Neo4j community 2.2 server when using my own SSL certs

2015-05-16 Thread Dan
keystore to pem format openssl pkcs12 -in keystore.p12 -nodes -nocerts -out key.pem # convert cert from pem to der format openssl x509 -outform der -in cert.pem -out test.cert # convert private key from pem to der format openssl rsa -outform der -in key.pem -out test.key Dan On Saturday, May 16, 2015

Re: [Neo4j] Results not appearing neo4j query

2015-05-16 Thread Dan Tascher
Any ideas? On Wednesday, May 13, 2015 at 9:23:59 PM UTC-4, Dan Tascher wrote: > > I copy and paste your statement but I still get an error: > > $cypher runtime=interpreted match (n) return n > > Invalid input 'u': expected 'e/E' (line 1, column 9 (offse

Re: [Neo4j] Problem starting Neo4j community 2.2 server when using my own SSL certs

2015-05-16 Thread Dan
Thanks Stefan, I was not aware of log files being put in database folder...I was only looking at console output and log file under data/log. So, this should help me trouble shoot problem. Thanks, Dan On Saturday, May 16, 2015 at 5:14:17 AM UTC-4, Stefan Armbruster wrote: >

[Neo4j] Problem starting Neo4j community 2.2 server when using my own SSL certs

2015-05-15 Thread Dan
I'm having trouble getting neo4j to work with my own SSL certificates (this is both on Windows and Linux). When attempting to start server it sits at log entry "Enabling HTTPS on port :7473" for around 7 seconds and then terminates with no error message. So, I'm not sure if there is a problem

Re: [Neo4j] Results not appearing neo4j query

2015-05-13 Thread Dan
I copy and paste your statement but I still get an error: $cypher runtime=interpreted match (n) return n Invalid input 'u': expected 'e/E' (line 1, column 9 (offset: 8)) "runtime=interpreted match (n) return n" ^ Neo.ClientError.Statement.InvalidSyntax

Re: [Neo4j] Results not appearing neo4j query

2015-05-13 Thread Dan
How do I use that? When I put that command into the browser command I get a syntax error: [image: Inline image 1] Best Regards, Dan On Tue, May 12, 2015 at 5:29 PM, Michael Hunger < michael.hun...@neotechnology.com> wrote: > seems to be a bug which should be fixed in the next

Re: [Neo4j] Results not appearing neo4j query

2015-05-12 Thread Dan
2.2.1 Best Regards, Dan On Mon, May 11, 2015 at 5:07 PM, Michael Hunger < michael.hun...@neotechnology.com> wrote: > Which version are you using? > > Michael > > Am 07.05.2015 um 04:33 schrieb Dan Tascher : > > match n return n > > On Wednesday, May 6, 2015 at

[Neo4j] Re: query timeout and neo4j web interface

2015-05-08 Thread Dan
if my query runs longer than 10 seconds).* * neo4j-sh (?)$ match n-[r]-() return distinct labels(n), type(r); ==> GuardTimeoutException: timeout occured (overtime=1) neo4j-sh (?)$ *** *Thanks, Dan* On Thursday, May 7, 2015 at 9:24:24 PM UTC-4, Sumit Gupta wrote: > Guard work

[Neo4j] Re: query timeout and neo4j web interface

2015-05-07 Thread Dan
;OWN" | | ["User"]| "OWN" | +---+ 2 rows 5872 ms Dan On Thursday, May 7, 2015 at 2:22:36 PM UTC-4, Sumit Gupta wrote: > Hi, > > Did this work in when you run the queries in neo4jshell? if not then check > whether you are setting in right configuration file

Re: [Neo4j] Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
match n return n On Wednesday, May 6, 2015 at 8:55:22 PM UTC-4, Michael Hunger wrote: > > Please share your query. > > Michael > > Am 06.05.2015 um 15:17 schrieb Dan >: > > In the console it looks like there is an overflow trying to build the tree: > &g

[Neo4j] query timeout and neo4j web interface

2015-05-06 Thread Dan
sults. Thanks, Dan -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.

[Neo4j] Re: Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
l not make much of a sense. > > Let me know if you are trying to do something with these 8k nodes. > > Thanks, > Sumit > > On Wednesday, 6 May 2015 06:54:55 UTC+5:30, Dan Tascher wrote: >> >> I have only about 8000 nodes in my database and when I do m

Re: [Neo4j] Re: Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
ense. > > Let me know if you are trying to do something with these 8k nodes. > > Thanks, > Sumit > > On Wednesday, 6 May 2015 06:54:55 UTC+5:30, Dan Tascher wrote: >> >> I have only about 8000 nodes in my database and when I do match n return >> n I never get any

[Neo4j] Re: Results not appearing neo4j query

2015-05-05 Thread Dan Tascher
s the exact syntax used for connecting via > neo4j-shell. > > Thanks, > SUmit > > On Wednesday, 6 May 2015 06:54:55 UTC+5:30, Dan Tascher wrote: >> >> I have only about 8000 nodes in my database and when I do match n return >> n I never get any graph back, any reason wh

[Neo4j] Results not appearing neo4j query

2015-05-05 Thread Dan Tascher
I have only about 8000 nodes in my database and when I do match n return n I never get any graph back, any reason why or how to fix? -- You received t

Re: [Neo4j] Bipartite graph projection via Cypher query

2015-04-26 Thread Dan
t; "cross-product". > > instead of using foreach you can also use unwind, which turns collections > back into rows, like this > > MATCH (entity:Entity)-[:LINKS_TO]->(doc:Document) > WITH doc, collect(entity) as entities > UNWIND entities as e1 > UNWIND entities a

Re: [Neo4j] Bipartite graph projection via Cypher query

2015-04-25 Thread Dan
t(entity) as entities >> >FOREACH (e1 in entities | FOREACH (e2 in filter(e in entities WHERE > id(e) > id(e1)) | CREATE (e1)-[:RELATED_TO]->(e2))) > > Michael > > Am 25.04.2015 um 04:33 schrieb Dan >: > > Thanks for info Michael. I believe that query will r

Re: [Neo4j] Bipartite graph projection via Cypher query

2015-04-24 Thread Dan
to D1, and E3 is linked to D3, a Cypher query would return: 1) 1) For a entity only graph result: E1 linked to E2 and E3 by itself. 2) 2) For a document only graph result: D1 linked to D2 and D3 by itself. Thanks, Dan On Friday, April 24, 2015 at 9:04:43 PM UTC-4, Michael Hunger

[Neo4j] Bipartite graph projection via Cypher query

2015-04-24 Thread Dan
es (X) linked to documents (Y) in a neo4j graph database. And I want a query result set that links X's to X's (for example) based on links to common Y's. Can such be done via a Cypher query sequence? Thanks, Dan -- You received this message because you are subscribed to the G

[Neo4j] Why do they continue to reference the jar files that don't exist there?

2014-10-18 Thread Dan Campbell
In the instructions for embedding Neo4j in a Java project, http://docs.neo4j.org/chunked/stable/tutorials-java-embedded-setup.html , they say Get the Neo4j libraries from one of these sources: - Extract a Neo4j download zip/tarball, and use the *jar* fil

[Neo4j] Neo4J repositories in Eclipse plugin

2014-06-25 Thread Dan Hemming
LEASE* *spring-beans-4.0.3.RELEASE* Any pointers would be greatly appreciated Thanks, Dan. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr

[Neo4j] Spring Data repositories in Eclipse plugin

2014-06-25 Thread Dan Hemming
-neo4j-3.0.0.RELEASE* *spring-beans-4.0.3.RELEASE* Any pointers would be greatly appreciated Thanks, Dan. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, se

[Neo4j] Re: Help with Labels and properties after loading data

2014-02-05 Thread Dan Greene
Can you provide the code/query you are using? On Tuesday, February 4, 2014 8:50:34 PM UTC-5, José F. Morales wrote: > > Hi Folks, > > I need some help with the graphs that I derived after loading some data. > > > I created some data to load into my database that had about 85 nodes and > 7k+ re