Created
January 26, 2015 14:44
-
-
Save mollyporph/88332d4fa7a89051bbd4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH (selectedSkill:Skill)-[:prerequisite]->(requiredSkills:Skill) | |
WHERE selectedSkill.ID == "someId" | |
RETURN (count(requiredSkills) - count(requiredSkills.purchased) == 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment