Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-18-2018 02:26 AM
09-18-2018 02:51 AM
Hi,
Without the query, a description of your model (for example a screenshot of your graph from the browser), and the result you want, it will hard to help you.
Can you update your question with those information ?
Thanks
09-18-2018 03:05 AM
I hope this picture made it much better to get what I mean
09-18-2018 04:15 AM
It's better but still not enought.
What do you mean by :
And can you share the query you have done so far ?
09-18-2018 04:20 AM
in my example , I mean that I want to display a list in which there are each two "Att" or more which worked with the same Contract and in the other row the number of times that those "Att" worked together . Here is my query :
MATCH (contrat:Contrat)-[r:ASSIGNED]->(at:Attrib)
WITH DISTINCT (contrat.cpv) AS a,
collect (at.label) as b,
count (contrat) as c
RETURN DISTINCT (b),c,a
ORDER by c desc
09-21-2018 01:17 PM
Hi,
Try this query:
MATCH p = (contrat:Contrat)-[r:ASSIGNED]->(at:Attrib)
WITH at, count(p) as Cnt
RETURN Cnt, COLLECT(at.label) as Attrib ORDER BY Cnt desc;
This should show the 'Result' in your picture. From your picture I recreated the database and tested the above query .
Hope this will help you.
-Kamal
09-24-2018 04:09 AM
Thanks man it works 🙂
All the sessions of the conference are now available online