Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
04-08-2022 12:48 AM
Please keep the following things in mind:
Please format code + Cypher statements with the code </>
icon, it's much easier to read.
Please provide the following information if you ran into a more serious issue:
PROFILE
or EXPLAIN
with boxes expanded (lower right corner)match (c:Client)-[:RAISED]-(t:Ticket) where c.Client=t.Client
SET c.TICKETS = count(t.TKTID)
Please help
Thanks
Ramdas
Solved! Go to Solution.
04-08-2022 01:13 AM
Try:
match (c:Client)-[:RAISED]-(t:Ticket)
where c.Client=t.Client
with c, count(t.TKTID) as cnt
set c.TICKETS = cnt
04-08-2022 01:13 AM
Try:
match (c:Client)-[:RAISED]-(t:Ticket)
where c.Client=t.Client
with c, count(t.TKTID) as cnt
set c.TICKETS = cnt
04-08-2022 01:26 AM
Great it worked
Thanks a lot Gary
All the sessions of the conference are now available online