-
Notifications
You must be signed in to change notification settings - Fork 1
/
cypher_query.cql
38 lines (34 loc) · 1.68 KB
/
cypher_query.cql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
CREATE (facebook:Company {name:'Facebook'})
CREATE (clement:Candidate {name:'Clement'})
CREATE (antoine:Candidate {name:'Antoine'})
CREATE (simon:Candidate {name:'Simon'})
CREATE (alex:Interviewer {name:'Alex'})
CREATE (meghan:Interviewer {name:'Meghan'})
CREATE (marli:Interviewer {name:'Marli'})
CREATE (sandeep:Interviewer {name:'Sandeep'})
CREATE (molly:Interviewer {name:'Molly'})
CREATE (akshay:Interviewer {name:'Akshay'})
CREATE (aditya:Interviewer {name:'Aditya'})
CREATE (brandon:Interviewer {name:'Brandon'})
CREATE (pedro:Interviewer {name:'Pedro'})
CREATE (ryan:Interviewer {name:'Ryan'})
CREATE (xi:Interviewer {name:'Xi'})
CREATE (simran:Interviewer {name:'Simran'})
CREATE (amanda:Interviewer {name:'Amanda'})
CREATE (alex)-[:INTERVIEWED {score: 'passed'}]->(clement)
CREATE (meghan)-[:INTERVIEWED {score: 'passed'}]->(clement)
CREATE (simran)-[:INTERVIEWED {score: 'passed'}]->(clement)
CREATE (molly)-[:INTERVIEWED {score: 'failed'}]->(clement)
CREATE (marli)-[:INTERVIEWED {score: 'failed'}]->(antoine)
CREATE (akshay)-[:INTERVIEWED {score: 'passed'}]->(antoine)
CREATE (aditya)-[:INTERVIEWED {score: 'passed'}]->(antoine)
CREATE (meghan)-[:INTERVIEWED {score: 'passed'}]->(antoine)
CREATE (marli)-[:INTERVIEWED {score: 'failed'}]->(simon)
CREATE (meghan)-[:INTERVIEWED {score: 'failed'}]->(simon)
CREATE (brandon)-[:INTERVIEWED {score: 'passed'}]->(simon)
CREATE (xi)-[:INTERVIEWED {score: 'failed'}]->(simon)
CREATE (ryan)-[:APPLIED {status: 'rejected'}]->(facebook)
CREATE (simran)-[:APPLIED {status: 'rejected'}]->(facebook)
CREATE (xi)-[:APPLIED {status: 'rejected'}]->(facebook)
CREATE (molly)-[:APPLIED {status: 'rejected'}]->(facebook)
CREATE (alex)-[:APPLIED {status: 'rejected'}]->(facebook)