Re: [Neo4j] Neo4j Spatial Support

2014-07-17 Thread Axel Morgner
Hm, did you use the raw link? https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.13-neo4j-2.1.2/neo4j-spatial-0.13-neo4j-2.1.2-server-plugin.zip?raw=true Am 13.07.2014 16:44, schrieb Alireza Rezaei Mahdiraji: Hi Alex, I tried to use

Re: [Neo4j] Any plans for an optional schema?

2014-07-17 Thread Axel Morgner
Thanks guys! Hi Jason, if you have questions on Structr, just let me know, we're happy to help! Best Axel Am 16.07.2014 23:31, schrieb Michael Hunger: Right I agree with Tom, currently you get this in structr (even when importing Neo4j databases, e.g. from a GraphGist). It definitely makes

[Neo4j] [ANN] graph-collections and spatial for Neo4j 2.0.4

2014-07-17 Thread Axel Morgner
Just new version numbers to keep track with Neo4j stable releases: https://github.com/neo4j-contrib/m2/tree/master/releases/org/neo4j/neo4j-graph-collections/0.7.4-neo4j-2.0.4 https://github.com/neo4j-contrib/m2/tree/master/releases/org/neo4j/neo4j-spatial/0.12-neo4j-2.0.4 -- Axel Morgner CEO

Re: [Neo4j] Neo4j Spatial Support

2014-07-17 Thread Alireza Rezaei Mahdiraji
Hi Axel, I clone the whole repo and it works now, thanks. I have further questions (e.g., indexing, etc) but perhaps I should sent them in separate topic, right? Thanks, Alireza On Thursday, July 17, 2014 8:18:39 AM UTC+2, Axel wrote: Hm, did you use the raw link?

[Neo4j] Re: Any plans for an optional schema?

2014-07-17 Thread Jason Gillman Jr.
Wow, I'm surprised Structr didn't turn up in any of my previous google searches. I need to do further research, but on an initial glance, this might look to do what I've actually spent numerous hours trying to do with custom rolled code. Thanks for the hat tip! -Jason On Wednesday, July

[Neo4j] Re: py2neo 1.6.4 doesn't work with Neo4j 2.1.2 - Cannot find node...

2014-07-17 Thread Alan Robertson
Hi Nigel, Many thanks for your quick reply! I can reproduce it with what I think is a smallish environment. If you download my code from here: http://hg.linux-ha.org/assimilation/archive/tip.tar.gz Untar it, and go into the cma directory. Run the python script *store.py* It will fail.

Re: [Neo4j] Re: Any plans for an optional schema?

2014-07-17 Thread Axel Morgner
Thanks! Seems we have to write more about Structr's rich schema support for Neo4j, so that a search for neo4j schema will return more Structr hits. :-) Am 17.07.2014 15:53, schrieb Jason Gillman Jr.: Wow, I'm surprised Structr didn't turn up in any of my previous google searches. I need to

[Neo4j] How to traverse all the nodes within a specific depth using traversal framework?

2014-07-17 Thread Frandro
I'd like to traverse all the nodes within a specific depth using traverse traverse. The start node (userNode) is uo. TraversalDescription friendsTraversal = graphDb.traversalDescription() .evaluator(Evaluators.excludeStartPosition())

[Neo4j] True streaming enabled in latest Perl driver - REST::Neo4p v0.3003

2014-07-17 Thread Mark Jensen
All, For Perlers using Neo4j, I want to announce that REST::Neo4p https://metacpan.org/pod/REST::Neo4p now (should) supports true object streaming from Neo4j REST JSON responses. In particular, rows returned from queries via $row = $query-fetch() should be retrieved as they come in from

Re: [Neo4j] True streaming enabled in latest Perl driver - REST::Neo4p v0.3003

2014-07-17 Thread Wes Freeman
Nice. All clients/drivers should strive for this functionality--definite boost to overall performance and responsiveness. :) Wes On Thu, Jul 17, 2014 at 11:59 AM, Mark Jensen maj.fortinb...@gmail.com wrote: All, For Perlers using Neo4j, I want to announce that REST::Neo4p

[Neo4j] Neo4j Queries

2014-07-17 Thread Gagandeep Singh
Hi All, We have enterprise version of Neo4j running a single server in Server mode. I have the following doubts. 1) If i have a node of type Employee with label Person on the attribute employee_id. Employee has another attribute called Name can i add a index on Name . Will this index take care

[Neo4j] Not able to view nodes in browser

2014-07-17 Thread shyam sunder reddy
Hello All, I just started with neo4j few days back. I just executed a sample hello world example given in the tutorial. But, I am not able to view the nodes in the db browser. Can you please help me with this. Is there any problem with the db path. (I have given the path

[Neo4j] Find Disconnected Nodes

2014-07-17 Thread David Bigelow
I am completely stumped on this. Is there a way to find nodes that have NO connection to anything else in the graph?! I have tried several different ways - but nothing seems to be working. Any suggestions?! Dave -- You received this message because you are subscribed to the Google Groups

Re: [Neo4j] Not able to view nodes in browser

2014-07-17 Thread Michael Hunger
Can you perhaps share a screenshot? Did you a execute a query from the left side pane? Like Get some data Note that there is a switch between tabular and vsualization view on the bottom right of each visualization view. Michael Am 17.07.2014 um 18:32 schrieb shyam sunder reddy

Re: [Neo4j] Find Disconnected Nodes

2014-07-17 Thread Michael Hunger
In principle two ways: MATCH (n:Label) WHERE NOT (n)--() RETURN n (you might leave off the label) or MATCH (n:Label) OPTIONAL MATCH (n)--(m) WITH n,m WHERE m IS NULL RETURN n Am 17.07.2014 um 17:59 schrieb David Bigelow davidhbige...@simplifiedlogic.com: I am completely stumped on this.

Re: [Neo4j] Re: py2neo 1.6.4 doesn't work with Neo4j 2.1.2 - Cannot find node...

2014-07-17 Thread Alan Robertson
And for good measure, if you use the Dockerfile quoted below (and attached), this is a clean-room reproduction of the problem in CentOS6 (with Python 2.7). ### FROM centos:latest # Would prefer headless, but not available in CentOS6 RUN yum -y

Re: [Neo4j] Re: py2neo 1.6.4 doesn't work with Neo4j 2.1.2 - Cannot find node...

2014-07-17 Thread Nigel Small
Cool, thanks. I should get a chance to look into it over the next couple of weeks. Cheers Nigel On 17 July 2014 22:41, Alan Robertson al...@unix.sh wrote: And for good measure, if you use the Dockerfile quoted below (and attached), this is a clean-room reproduction of the problem in CentOS6

Re: [Neo4j] ACL schema with Neo4j, data in MySQL/MongoDB

2014-07-17 Thread Benjamin Makus
So... here is the Graph Gist: http://gist.neo4j.org/?github-benneq%2Fgists%2F%2Fmeta%2FSimple.adoc And the PDF (from the previous post): http://www.docdroid.net/er3w/acl-cheat-sheet.pdf.html *The permission resolution algorithm:* 1. Look if the User has a direct Permission relation to the