Created
February 11, 2017 00:45
-
-
Save SimonGoring/6b2874741ad60cfcc3dbfb439ef8d8b6 to your computer and use it in GitHub Desktop.
Every person associated with multiple institutions in the NSF database
This file contains hidden or 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 (n:person)-[r:employed_by]->(:institution) | |
| WITH n, count(r) AS count | |
| WHERE count > 1 | |
| MATCH (n)-[r:employed_by]->(m:institution) | |
| RETURN n,r,m; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment