Re: [Neo4j] Re: using 'distinct' on more than one node type

2014-10-06 Thread Michael Hunger
Either for triples With distinct a,b,c Return count(*) Or across all Unwind [a,b,c] as n Return count(distinct n) Von meinem iPhone gesendet > Am 06.10.2014 um 11:40 schrieb Mohana Krishna, IIT Bombay, India > : > > I am facing this problem as I am using 'distinct' in conjunction with > 'co

[Neo4j] Re: using 'distinct' on more than one node type

2014-10-06 Thread Mohana Krishna, IIT Bombay, India
I am facing this problem as I am using 'distinct' in conjunction with 'count'. somebody please help. Thanks. On Monday, 6 October 2014 15:03:11 UTC+5:30, Mohana Krishna, IIT Bombay, India wrote: > > I want to use 'distinct' on >1 columns. Here is an example query > > match (a:A)-[r1]->(b:B), (a)