Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-09-2021 10:55 AM
Hi there,
I have a Neo4j Database containing Candidates, Jobs, Techs, Cities and Focus.
What I want is to count how many relationships and propeties a Candidate have in common with a Job relative to all Job nodes and properties.
Example:
Candidate A
Job J
Candidate have matches the salary property from Job, and all its relationships.
So in this case the result would be 100%.
02-09-2021 06:37 PM
Try this:
match (c:Candidate)
where 2000 <= c.salary <= 4000
match(c)-[]-(t:Tech)
where t.name = "A"
match(c)-[]-(f:Focus)
where f.name = "F"
return c, t, f
All the sessions of the conference are now available online