-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleData
126 lines (95 loc) · 3.73 KB
/
SampleData
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
set {
_:Machine1 <name> "Tractor" .
_:Machine1 <model> "1995" .
_:Machine1 <MachineID> "M01" .
_:Machine1 <dgraph.type> "Machine" .
_:Machine2 <name> "Tracked tractor" .
_:Machine2 <model> "1985" .
_:Machine2 <MachineID> "M02" .
_:Machine2 <dgraph.type> "Machine" .
_:Machine3 <name> "Cultivator" .
_:Machine3 <dgraph.type> "Machine" .
_:Machine3 <model> "2005" .
_:Machine3 <MachineID> "M03" .
_:Machine4 <name> "Cultipacker" .
_:Machine4 <dgraph.type> "Machine" .
_:Machine4 <model> "2007" .
_:Machine4 <MachineID> "M04" .
_:Machine5 <name> "Chisel plow" .
_:Machine5 <dgraph.type> "Machine" .
_:Machine5 <model> "2008" .
_:Machine5 <MachineID> "M05" .
_:person1 <name> "Jatin" .
_:person1 <email> "[email protected]" .
_:person1 <dgraph.type> "Person" .
_:person2 <name> "Michael" .
_:person2 <email> "[email protected]" .
_:person2 <dgraph.type> "Person" .
_:person3 <name> "Santo" .
_:person3 <dgraph.type> "Person" .
_:person3 <email> "[email protected]" .
_:person4 <name> "Neeraj" .
_:person4 <dgraph.type> "Person" .
_:person4 <email> "[email protected]" .
_:person5 <name> "Arijit" .
_:person5 <dgraph.type> "Person" .
_:person5 <email> "[email protected]" .
_:deploy1 <ContractID> "C1" .
_:deploy1 <current> "false" .
_:deploy1 <startDate> "2019-10-02T10:05:05+00:00" .
_:deploy1 <endDate> "2019-10-03T12:05:05+00:00" .
_:deploy1 <location> "New Dehli" .
_:deploy1 <dgraph.type> "Deploy" .
_:deploy2 <ContractID> "C2" .
_:deploy2 <current> "true" .
_:deploy2 <startDate> "2020-01-05T15:15:05+00:00" .
_:deploy2 <endDate> "2020-06-03T17:05:05+00:00" .
_:deploy2 <location> "San Francisco" .
_:deploy2 <dgraph.type> "Deploy" .
_:deploy3 <ContractID> "C3" .
_:deploy3 <current> "true" .
_:deploy3 <startDate> "2020-03-05T20:20:05+00:00" .
_:deploy3 <endDate> "2020-07-03T23:05:05+00:00" .
_:deploy3 <location> "Bangalore" .
_:deploy3 <dgraph.type> "Deploy" .
_:deploy4 <ContractID> "C4" .
_:deploy4 <current> "false" .
_:deploy4 <startDate> "2020-01-05T18:20:05+00:00" .
_:deploy4 <endDate> "2020-02-03T19:05:05+00:00" .
_:deploy4 <location> "Sydney" .
_:deploy4 <dgraph.type> "Deploy" .
_:deploy5 <ContractID> "C5" .
_:deploy5 <current> "true" .
_:deploy5 <startDate> "2020-01-05T19:20:05+00:00" .
_:deploy5 <endDate> "2020-07-03T12:15:05+00:00" .
_:deploy5 <location> "New York" .
_:deploy5 <dgraph.type> "Deploy" .
_:deploy6 <ContractID> "C6" .
_:deploy6 <current> "false" .
_:deploy6 <startDate> "2019-06-05T13:17:05+00:00" .
_:deploy6 <endDate> "2019-08-03T15:40:05+00:00" .
_:deploy6 <location> "Chandigarh" .
_:deploy6 <dgraph.type> "Deploy" .
_:deploy7 <ContractID> "C7" .
_:deploy7 <current> "false" .
_:deploy7 <startDate> "2019-07-05T13:17:05+00:00" .
_:deploy7 <endDate> "2019-12-03T15:40:05+00:00" .
_:deploy7 <location> "Italy" .
_:deploy7 <dgraph.type> "Deploy" .
_:Machine1 <deployement> _:deploy1 .
_:Machine1 <deployement> _:deploy2 .
_:Machine2 <deployement> _:deploy3 .
_:Machine2 <deployement> _:deploy4 .
_:Machine3 <deployement> _:deploy5 .
_:Machine3 <deployement> _:deploy7 .
_:Machine4 <deployement> _:deploy6 .
_:person1 <deployed> _:deploy1 .
_:person2 <deployed> _:deploy2 .
_:person2 <deployed> _:deploy3 .
_:person3 <deployed> _:deploy4 .
_:person4 <deployed> _:deploy5 .
_:person5 <deployed> _:deploy6 .
_:person5 <deployed> _:deploy7 .
}
}