@neo4j-cypher/react-codemirror 2.0.0-next.4 → 2.0.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/{types/CypherEditor.d.ts → CypherEditor.d.ts} +10 -1
  3. package/dist/CypherEditor.js +206 -0
  4. package/dist/CypherEditor.js.map +1 -0
  5. package/dist/e2e_tests/auto-completion.spec.js +129 -0
  6. package/dist/e2e_tests/auto-completion.spec.js.map +1 -0
  7. package/dist/e2e_tests/e2e-utils.js +52 -0
  8. package/dist/e2e_tests/e2e-utils.js.map +1 -0
  9. package/dist/e2e_tests/extra-keybindings.spec.js +44 -0
  10. package/dist/e2e_tests/extra-keybindings.spec.js.map +1 -0
  11. package/dist/e2e_tests/history-navigation.spec.js +136 -0
  12. package/dist/e2e_tests/history-navigation.spec.js.map +1 -0
  13. package/dist/e2e_tests/performance-test.spec.d.ts +6 -0
  14. package/dist/e2e_tests/performance-test.spec.js +96 -0
  15. package/dist/e2e_tests/performance-test.spec.js.map +1 -0
  16. package/dist/e2e_tests/sanity-checks.spec.js +65 -0
  17. package/dist/e2e_tests/sanity-checks.spec.js.map +1 -0
  18. package/dist/e2e_tests/signature-help.spec.js +151 -0
  19. package/dist/e2e_tests/signature-help.spec.js.map +1 -0
  20. package/dist/e2e_tests/syntax-highlighting.spec.js +91 -0
  21. package/dist/e2e_tests/syntax-highlighting.spec.js.map +1 -0
  22. package/dist/e2e_tests/syntax-validation.spec.js +79 -0
  23. package/dist/e2e_tests/syntax-validation.spec.js.map +1 -0
  24. package/dist/history-navigation.js +163 -0
  25. package/dist/history-navigation.js.map +1 -0
  26. package/dist/{types/icons.d.ts → icons.d.ts} +1 -1
  27. package/dist/icons.js +62 -0
  28. package/dist/icons.js.map +1 -0
  29. package/dist/{types/index.d.ts → index.d.ts} +1 -1
  30. package/dist/index.js +5 -0
  31. package/dist/index.js.map +1 -0
  32. package/dist/lang-cypher/autocomplete.js +56 -0
  33. package/dist/lang-cypher/autocomplete.js.map +1 -0
  34. package/dist/{types/lang-cypher → lang-cypher}/constants.d.ts +9 -0
  35. package/dist/lang-cypher/constants.js +65 -0
  36. package/dist/lang-cypher/constants.js.map +1 -0
  37. package/dist/lang-cypher/contants.test.js +102 -0
  38. package/dist/lang-cypher/contants.test.js.map +1 -0
  39. package/dist/lang-cypher/create-cypher-theme.js +144 -0
  40. package/dist/lang-cypher/create-cypher-theme.js.map +1 -0
  41. package/dist/{types/lang-cypher → lang-cypher}/lang-cypher.d.ts +3 -1
  42. package/dist/lang-cypher/lang-cypher.js +24 -0
  43. package/dist/lang-cypher/lang-cypher.js.map +1 -0
  44. package/dist/lang-cypher/lint-worker.d.ts +8 -0
  45. package/dist/lang-cypher/lint-worker.js +4 -0
  46. package/dist/lang-cypher/lint-worker.js.map +1 -0
  47. package/dist/lang-cypher/parser-adapter.d.ts +19 -0
  48. package/dist/lang-cypher/parser-adapter.js +113 -0
  49. package/dist/lang-cypher/parser-adapter.js.map +1 -0
  50. package/dist/lang-cypher/signature-help.d.ts +4 -0
  51. package/dist/lang-cypher/signature-help.js +77 -0
  52. package/dist/lang-cypher/signature-help.js.map +1 -0
  53. package/dist/{types/lang-cypher → lang-cypher}/syntax-validation.d.ts +2 -0
  54. package/dist/lang-cypher/syntax-validation.js +68 -0
  55. package/dist/lang-cypher/syntax-validation.js.map +1 -0
  56. package/dist/lang-cypher/theme-icons.js +22 -0
  57. package/dist/lang-cypher/theme-icons.js.map +1 -0
  58. package/dist/ndl-tokens-copy.js +380 -0
  59. package/dist/ndl-tokens-copy.js.map +1 -0
  60. package/dist/ndl-tokens-copy.test.js +11 -0
  61. package/dist/ndl-tokens-copy.test.js.map +1 -0
  62. package/dist/neo4j-setup.js +86 -0
  63. package/dist/neo4j-setup.js.map +1 -0
  64. package/dist/themes.js +114 -0
  65. package/dist/themes.js.map +1 -0
  66. package/dist/tsconfig.tsbuildinfo +1 -0
  67. package/package.json +15 -18
  68. package/src/CypherEditor.tsx +31 -5
  69. package/src/e2e_tests/performance-test.spec.tsx +100 -13
  70. package/src/e2e_tests/sanity-checks.spec.tsx +8 -3
  71. package/src/e2e_tests/signature-help.spec.tsx +312 -0
  72. package/src/icons.ts +3 -0
  73. package/src/index.ts +1 -1
  74. package/src/lang-cypher/autocomplete.ts +6 -1
  75. package/src/lang-cypher/constants.ts +23 -0
  76. package/src/lang-cypher/create-cypher-theme.ts +4 -0
  77. package/src/lang-cypher/lang-cypher.ts +16 -7
  78. package/src/lang-cypher/lint-worker.ts +14 -0
  79. package/src/lang-cypher/parser-adapter.ts +145 -0
  80. package/src/lang-cypher/signature-help.ts +102 -0
  81. package/src/lang-cypher/syntax-validation.ts +70 -4
  82. package/src/themes.ts +2 -0
  83. package/dist/cjs/index.cjs +0 -1441
  84. package/dist/cjs/index.cjs.map +0 -7
  85. package/dist/esm/index.mjs +0 -1464
  86. package/dist/esm/index.mjs.map +0 -7
  87. package/dist/types/e2e_tests/mock-data.d.ts +0 -3779
  88. package/dist/types/lang-cypher/ParserAdapter.d.ts +0 -14
  89. package/dist/types/tsconfig.tsbuildinfo +0 -1
  90. package/src/e2e_tests/mock-data.ts +0 -4310
  91. package/src/lang-cypher/ParserAdapter.ts +0 -92
  92. /package/dist/{types/e2e_tests → e2e_tests}/auto-completion.spec.d.ts +0 -0
  93. /package/dist/{types/e2e_tests → e2e_tests}/e2e-utils.d.ts +0 -0
  94. /package/dist/{types/e2e_tests → e2e_tests}/extra-keybindings.spec.d.ts +0 -0
  95. /package/dist/{types/e2e_tests → e2e_tests}/history-navigation.spec.d.ts +0 -0
  96. /package/dist/{types/e2e_tests → e2e_tests}/sanity-checks.spec.d.ts +0 -0
  97. /package/dist/{types/e2e_tests/performance-test.spec.d.ts → e2e_tests/signature-help.spec.d.ts} +0 -0
  98. /package/dist/{types/e2e_tests → e2e_tests}/syntax-highlighting.spec.d.ts +0 -0
  99. /package/dist/{types/e2e_tests → e2e_tests}/syntax-validation.spec.d.ts +0 -0
  100. /package/dist/{types/history-navigation.d.ts → history-navigation.d.ts} +0 -0
  101. /package/dist/{types/lang-cypher → lang-cypher}/autocomplete.d.ts +0 -0
  102. /package/dist/{types/lang-cypher → lang-cypher}/contants.test.d.ts +0 -0
  103. /package/dist/{types/lang-cypher → lang-cypher}/create-cypher-theme.d.ts +0 -0
  104. /package/dist/{types/lang-cypher → lang-cypher}/theme-icons.d.ts +0 -0
  105. /package/dist/{types/ndl-tokens-copy.d.ts → ndl-tokens-copy.d.ts} +0 -0
  106. /package/dist/{types/ndl-tokens-copy.test.d.ts → ndl-tokens-copy.test.d.ts} +0 -0
  107. /package/dist/{types/neo4j-setup.d.ts → neo4j-setup.d.ts} +0 -0
  108. /package/dist/{types/themes.d.ts → themes.d.ts} +0 -0
@@ -1,3779 +0,0 @@
1
- export declare const mockSchema: {
2
- functionSignatures: {
3
- abs: {
4
- label: string;
5
- };
6
- acos: {
7
- label: string;
8
- };
9
- all: {
10
- label: string;
11
- };
12
- any: {
13
- label: string;
14
- };
15
- 'apoc.agg.first': {
16
- label: string;
17
- };
18
- 'apoc.agg.graph': {
19
- label: string;
20
- };
21
- 'apoc.agg.last': {
22
- label: string;
23
- };
24
- 'apoc.agg.maxItems': {
25
- label: string;
26
- };
27
- 'apoc.agg.median': {
28
- label: string;
29
- };
30
- 'apoc.agg.minItems': {
31
- label: string;
32
- };
33
- 'apoc.agg.nth': {
34
- label: string;
35
- };
36
- 'apoc.agg.percentiles': {
37
- label: string;
38
- };
39
- 'apoc.agg.product': {
40
- label: string;
41
- };
42
- 'apoc.agg.slice': {
43
- label: string;
44
- };
45
- 'apoc.agg.statistics': {
46
- label: string;
47
- };
48
- 'apoc.any.isDeleted': {
49
- label: string;
50
- };
51
- 'apoc.any.properties': {
52
- label: string;
53
- };
54
- 'apoc.any.property': {
55
- label: string;
56
- };
57
- 'apoc.any.rebind': {
58
- label: string;
59
- };
60
- 'apoc.bitwise.op': {
61
- label: string;
62
- };
63
- 'apoc.coll.avg': {
64
- label: string;
65
- };
66
- 'apoc.coll.avgDuration': {
67
- label: string;
68
- };
69
- 'apoc.coll.combinations': {
70
- label: string;
71
- };
72
- 'apoc.coll.contains': {
73
- label: string;
74
- };
75
- 'apoc.coll.containsAll': {
76
- label: string;
77
- };
78
- 'apoc.coll.containsAllSorted': {
79
- label: string;
80
- };
81
- 'apoc.coll.containsDuplicates': {
82
- label: string;
83
- };
84
- 'apoc.coll.containsSorted': {
85
- label: string;
86
- };
87
- 'apoc.coll.different': {
88
- label: string;
89
- };
90
- 'apoc.coll.disjunction': {
91
- label: string;
92
- };
93
- 'apoc.coll.dropDuplicateNeighbors': {
94
- label: string;
95
- };
96
- 'apoc.coll.duplicates': {
97
- label: string;
98
- };
99
- 'apoc.coll.duplicatesWithCount': {
100
- label: string;
101
- };
102
- 'apoc.coll.fill': {
103
- label: string;
104
- };
105
- 'apoc.coll.flatten': {
106
- label: string;
107
- };
108
- 'apoc.coll.frequencies': {
109
- label: string;
110
- };
111
- 'apoc.coll.frequenciesAsMap': {
112
- label: string;
113
- };
114
- 'apoc.coll.indexOf': {
115
- label: string;
116
- };
117
- 'apoc.coll.insert': {
118
- label: string;
119
- };
120
- 'apoc.coll.insertAll': {
121
- label: string;
122
- };
123
- 'apoc.coll.intersection': {
124
- label: string;
125
- };
126
- 'apoc.coll.isEqualCollection': {
127
- label: string;
128
- };
129
- 'apoc.coll.max': {
130
- label: string;
131
- };
132
- 'apoc.coll.min': {
133
- label: string;
134
- };
135
- 'apoc.coll.occurrences': {
136
- label: string;
137
- };
138
- 'apoc.coll.pairWithOffset': {
139
- label: string;
140
- };
141
- 'apoc.coll.pairs': {
142
- label: string;
143
- };
144
- 'apoc.coll.pairsMin': {
145
- label: string;
146
- };
147
- 'apoc.coll.partition': {
148
- label: string;
149
- };
150
- 'apoc.coll.randomItem': {
151
- label: string;
152
- };
153
- 'apoc.coll.randomItems': {
154
- label: string;
155
- };
156
- 'apoc.coll.remove': {
157
- label: string;
158
- };
159
- 'apoc.coll.removeAll': {
160
- label: string;
161
- };
162
- 'apoc.coll.reverse': {
163
- label: string;
164
- };
165
- 'apoc.coll.runningTotal': {
166
- label: string;
167
- };
168
- 'apoc.coll.set': {
169
- label: string;
170
- };
171
- 'apoc.coll.shuffle': {
172
- label: string;
173
- };
174
- 'apoc.coll.sort': {
175
- label: string;
176
- };
177
- 'apoc.coll.sortMaps': {
178
- label: string;
179
- };
180
- 'apoc.coll.sortMulti': {
181
- label: string;
182
- };
183
- 'apoc.coll.sortNodes': {
184
- label: string;
185
- };
186
- 'apoc.coll.sortText': {
187
- label: string;
188
- };
189
- 'apoc.coll.stdev': {
190
- label: string;
191
- };
192
- 'apoc.coll.subtract': {
193
- label: string;
194
- };
195
- 'apoc.coll.sum': {
196
- label: string;
197
- };
198
- 'apoc.coll.sumLongs': {
199
- label: string;
200
- };
201
- 'apoc.coll.toSet': {
202
- label: string;
203
- };
204
- 'apoc.coll.union': {
205
- label: string;
206
- };
207
- 'apoc.coll.unionAll': {
208
- label: string;
209
- };
210
- 'apoc.coll.zip': {
211
- label: string;
212
- };
213
- 'apoc.convert.fromJsonList': {
214
- label: string;
215
- };
216
- 'apoc.convert.fromJsonMap': {
217
- label: string;
218
- };
219
- 'apoc.convert.getJsonProperty': {
220
- label: string;
221
- };
222
- 'apoc.convert.getJsonPropertyMap': {
223
- label: string;
224
- };
225
- 'apoc.convert.toBoolean': {
226
- label: string;
227
- };
228
- 'apoc.convert.toBooleanList': {
229
- label: string;
230
- };
231
- 'apoc.convert.toFloat': {
232
- label: string;
233
- };
234
- 'apoc.convert.toIntList': {
235
- label: string;
236
- };
237
- 'apoc.convert.toInteger': {
238
- label: string;
239
- };
240
- 'apoc.convert.toJson': {
241
- label: string;
242
- };
243
- 'apoc.convert.toList': {
244
- label: string;
245
- };
246
- 'apoc.convert.toMap': {
247
- label: string;
248
- };
249
- 'apoc.convert.toNode': {
250
- label: string;
251
- };
252
- 'apoc.convert.toNodeList': {
253
- label: string;
254
- };
255
- 'apoc.convert.toRelationship': {
256
- label: string;
257
- };
258
- 'apoc.convert.toRelationshipList': {
259
- label: string;
260
- };
261
- 'apoc.convert.toSet': {
262
- label: string;
263
- };
264
- 'apoc.convert.toSortedJsonMap': {
265
- label: string;
266
- };
267
- 'apoc.convert.toString': {
268
- label: string;
269
- };
270
- 'apoc.convert.toStringList': {
271
- label: string;
272
- };
273
- 'apoc.create.uuid': {
274
- label: string;
275
- };
276
- 'apoc.create.uuidBase64': {
277
- label: string;
278
- };
279
- 'apoc.create.uuidBase64ToHex': {
280
- label: string;
281
- };
282
- 'apoc.create.uuidHexToBase64': {
283
- label: string;
284
- };
285
- 'apoc.create.vNode': {
286
- label: string;
287
- };
288
- 'apoc.create.vRelationship': {
289
- label: string;
290
- };
291
- 'apoc.create.virtual.fromNode': {
292
- label: string;
293
- };
294
- 'apoc.cypher.runFirstColumn': {
295
- label: string;
296
- };
297
- 'apoc.cypher.runFirstColumnMany': {
298
- label: string;
299
- };
300
- 'apoc.cypher.runFirstColumnSingle': {
301
- label: string;
302
- };
303
- 'apoc.data.domain': {
304
- label: string;
305
- };
306
- 'apoc.data.url': {
307
- label: string;
308
- };
309
- 'apoc.date.add': {
310
- label: string;
311
- };
312
- 'apoc.date.convert': {
313
- label: string;
314
- };
315
- 'apoc.date.convertFormat': {
316
- label: string;
317
- };
318
- 'apoc.date.currentTimestamp': {
319
- label: string;
320
- };
321
- 'apoc.date.field': {
322
- label: string;
323
- };
324
- 'apoc.date.fields': {
325
- label: string;
326
- };
327
- 'apoc.date.format': {
328
- label: string;
329
- };
330
- 'apoc.date.fromISO8601': {
331
- label: string;
332
- };
333
- 'apoc.date.parse': {
334
- label: string;
335
- };
336
- 'apoc.date.parseAsZonedDateTime': {
337
- label: string;
338
- };
339
- 'apoc.date.systemTimezone': {
340
- label: string;
341
- };
342
- 'apoc.date.toISO8601': {
343
- label: string;
344
- };
345
- 'apoc.date.toYears': {
346
- label: string;
347
- };
348
- 'apoc.diff.nodes': {
349
- label: string;
350
- };
351
- 'apoc.hashing.fingerprint': {
352
- label: string;
353
- };
354
- 'apoc.hashing.fingerprintGraph': {
355
- label: string;
356
- };
357
- 'apoc.hashing.fingerprinting': {
358
- label: string;
359
- };
360
- 'apoc.json.path': {
361
- label: string;
362
- };
363
- 'apoc.label.exists': {
364
- label: string;
365
- };
366
- 'apoc.map.clean': {
367
- label: string;
368
- };
369
- 'apoc.map.flatten': {
370
- label: string;
371
- };
372
- 'apoc.map.fromLists': {
373
- label: string;
374
- };
375
- 'apoc.map.fromNodes': {
376
- label: string;
377
- };
378
- 'apoc.map.fromPairs': {
379
- label: string;
380
- };
381
- 'apoc.map.fromValues': {
382
- label: string;
383
- };
384
- 'apoc.map.get': {
385
- label: string;
386
- };
387
- 'apoc.map.groupBy': {
388
- label: string;
389
- };
390
- 'apoc.map.groupByMulti': {
391
- label: string;
392
- };
393
- 'apoc.map.merge': {
394
- label: string;
395
- };
396
- 'apoc.map.mergeList': {
397
- label: string;
398
- };
399
- 'apoc.map.mget': {
400
- label: string;
401
- };
402
- 'apoc.map.removeKey': {
403
- label: string;
404
- };
405
- 'apoc.map.removeKeys': {
406
- label: string;
407
- };
408
- 'apoc.map.setEntry': {
409
- label: string;
410
- };
411
- 'apoc.map.setKey': {
412
- label: string;
413
- };
414
- 'apoc.map.setLists': {
415
- label: string;
416
- };
417
- 'apoc.map.setPairs': {
418
- label: string;
419
- };
420
- 'apoc.map.setValues': {
421
- label: string;
422
- };
423
- 'apoc.map.sortedProperties': {
424
- label: string;
425
- };
426
- 'apoc.map.submap': {
427
- label: string;
428
- };
429
- 'apoc.map.unflatten': {
430
- label: string;
431
- };
432
- 'apoc.map.updateTree': {
433
- label: string;
434
- };
435
- 'apoc.map.values': {
436
- label: string;
437
- };
438
- 'apoc.math.cosh': {
439
- label: string;
440
- };
441
- 'apoc.math.coth': {
442
- label: string;
443
- };
444
- 'apoc.math.csch': {
445
- label: string;
446
- };
447
- 'apoc.math.maxByte': {
448
- label: string;
449
- };
450
- 'apoc.math.maxDouble': {
451
- label: string;
452
- };
453
- 'apoc.math.maxInt': {
454
- label: string;
455
- };
456
- 'apoc.math.maxLong': {
457
- label: string;
458
- };
459
- 'apoc.math.minByte': {
460
- label: string;
461
- };
462
- 'apoc.math.minDouble': {
463
- label: string;
464
- };
465
- 'apoc.math.minInt': {
466
- label: string;
467
- };
468
- 'apoc.math.minLong': {
469
- label: string;
470
- };
471
- 'apoc.math.round': {
472
- label: string;
473
- };
474
- 'apoc.math.sech': {
475
- label: string;
476
- };
477
- 'apoc.math.sigmoid': {
478
- label: string;
479
- };
480
- 'apoc.math.sigmoidPrime': {
481
- label: string;
482
- };
483
- 'apoc.math.sinh': {
484
- label: string;
485
- };
486
- 'apoc.math.tanh': {
487
- label: string;
488
- };
489
- 'apoc.meta.cypher.isType': {
490
- label: string;
491
- };
492
- 'apoc.meta.cypher.type': {
493
- label: string;
494
- };
495
- 'apoc.meta.cypher.types': {
496
- label: string;
497
- };
498
- 'apoc.meta.isType': {
499
- label: string;
500
- };
501
- 'apoc.meta.nodes.count': {
502
- label: string;
503
- };
504
- 'apoc.meta.type': {
505
- label: string;
506
- };
507
- 'apoc.meta.typeName': {
508
- label: string;
509
- };
510
- 'apoc.meta.types': {
511
- label: string;
512
- };
513
- 'apoc.node.degree': {
514
- label: string;
515
- };
516
- 'apoc.node.degree.in': {
517
- label: string;
518
- };
519
- 'apoc.node.degree.out': {
520
- label: string;
521
- };
522
- 'apoc.node.id': {
523
- label: string;
524
- };
525
- 'apoc.node.labels': {
526
- label: string;
527
- };
528
- 'apoc.node.rebind': {
529
- label: string;
530
- };
531
- 'apoc.node.relationship.exists': {
532
- label: string;
533
- };
534
- 'apoc.node.relationship.types': {
535
- label: string;
536
- };
537
- 'apoc.node.relationships.exist': {
538
- label: string;
539
- };
540
- 'apoc.nodes.connected': {
541
- label: string;
542
- };
543
- 'apoc.nodes.isDense': {
544
- label: string;
545
- };
546
- 'apoc.nodes.relationship.types': {
547
- label: string;
548
- };
549
- 'apoc.nodes.relationships.exist': {
550
- label: string;
551
- };
552
- 'apoc.number.arabicToRoman': {
553
- label: string;
554
- };
555
- 'apoc.number.exact.add': {
556
- label: string;
557
- };
558
- 'apoc.number.exact.div': {
559
- label: string;
560
- };
561
- 'apoc.number.exact.mul': {
562
- label: string;
563
- };
564
- 'apoc.number.exact.sub': {
565
- label: string;
566
- };
567
- 'apoc.number.exact.toExact': {
568
- label: string;
569
- };
570
- 'apoc.number.exact.toFloat': {
571
- label: string;
572
- };
573
- 'apoc.number.exact.toInteger': {
574
- label: string;
575
- };
576
- 'apoc.number.format': {
577
- label: string;
578
- };
579
- 'apoc.number.parseFloat': {
580
- label: string;
581
- };
582
- 'apoc.number.parseInt': {
583
- label: string;
584
- };
585
- 'apoc.number.romanToArabic': {
586
- label: string;
587
- };
588
- 'apoc.path.combine': {
589
- label: string;
590
- };
591
- 'apoc.path.create': {
592
- label: string;
593
- };
594
- 'apoc.path.elements': {
595
- label: string;
596
- };
597
- 'apoc.path.slice': {
598
- label: string;
599
- };
600
- 'apoc.rel.endNode': {
601
- label: string;
602
- };
603
- 'apoc.rel.id': {
604
- label: string;
605
- };
606
- 'apoc.rel.rebind': {
607
- label: string;
608
- };
609
- 'apoc.rel.startNode': {
610
- label: string;
611
- };
612
- 'apoc.rel.type': {
613
- label: string;
614
- };
615
- 'apoc.schema.node.constraintExists': {
616
- label: string;
617
- };
618
- 'apoc.schema.node.indexExists': {
619
- label: string;
620
- };
621
- 'apoc.schema.relationship.constraintExists': {
622
- label: string;
623
- };
624
- 'apoc.schema.relationship.indexExists': {
625
- label: string;
626
- };
627
- 'apoc.scoring.existence': {
628
- label: string;
629
- };
630
- 'apoc.scoring.pareto': {
631
- label: string;
632
- };
633
- 'apoc.static.get': {
634
- label: string;
635
- };
636
- 'apoc.static.getAll': {
637
- label: string;
638
- };
639
- 'apoc.temporal.format': {
640
- label: string;
641
- };
642
- 'apoc.temporal.formatDuration': {
643
- label: string;
644
- };
645
- 'apoc.temporal.toZonedTemporal': {
646
- label: string;
647
- };
648
- 'apoc.text.base64Decode': {
649
- label: string;
650
- };
651
- 'apoc.text.base64Encode': {
652
- label: string;
653
- };
654
- 'apoc.text.base64UrlDecode': {
655
- label: string;
656
- };
657
- 'apoc.text.base64UrlEncode': {
658
- label: string;
659
- };
660
- 'apoc.text.byteCount': {
661
- label: string;
662
- };
663
- 'apoc.text.bytes': {
664
- label: string;
665
- };
666
- 'apoc.text.camelCase': {
667
- label: string;
668
- };
669
- 'apoc.text.capitalize': {
670
- label: string;
671
- };
672
- 'apoc.text.capitalizeAll': {
673
- label: string;
674
- };
675
- 'apoc.text.charAt': {
676
- label: string;
677
- };
678
- 'apoc.text.clean': {
679
- label: string;
680
- };
681
- 'apoc.text.code': {
682
- label: string;
683
- };
684
- 'apoc.text.compareCleaned': {
685
- label: string;
686
- };
687
- 'apoc.text.decapitalize': {
688
- label: string;
689
- };
690
- 'apoc.text.decapitalizeAll': {
691
- label: string;
692
- };
693
- 'apoc.text.distance': {
694
- label: string;
695
- };
696
- 'apoc.text.doubleMetaphone': {
697
- label: string;
698
- };
699
- 'apoc.text.format': {
700
- label: string;
701
- };
702
- 'apoc.text.fuzzyMatch': {
703
- label: string;
704
- };
705
- 'apoc.text.hammingDistance': {
706
- label: string;
707
- };
708
- 'apoc.text.hexCharAt': {
709
- label: string;
710
- };
711
- 'apoc.text.hexValue': {
712
- label: string;
713
- };
714
- 'apoc.text.indexOf': {
715
- label: string;
716
- };
717
- 'apoc.text.indexesOf': {
718
- label: string;
719
- };
720
- 'apoc.text.jaroWinklerDistance': {
721
- label: string;
722
- };
723
- 'apoc.text.join': {
724
- label: string;
725
- };
726
- 'apoc.text.levenshteinDistance': {
727
- label: string;
728
- };
729
- 'apoc.text.levenshteinSimilarity': {
730
- label: string;
731
- };
732
- 'apoc.text.lpad': {
733
- label: string;
734
- };
735
- 'apoc.text.phonetic': {
736
- label: string;
737
- };
738
- 'apoc.text.random': {
739
- label: string;
740
- };
741
- 'apoc.text.regexGroups': {
742
- label: string;
743
- };
744
- 'apoc.text.regreplace': {
745
- label: string;
746
- };
747
- 'apoc.text.repeat': {
748
- label: string;
749
- };
750
- 'apoc.text.replace': {
751
- label: string;
752
- };
753
- 'apoc.text.rpad': {
754
- label: string;
755
- };
756
- 'apoc.text.slug': {
757
- label: string;
758
- };
759
- 'apoc.text.snakeCase': {
760
- label: string;
761
- };
762
- 'apoc.text.sorensenDiceSimilarity': {
763
- label: string;
764
- };
765
- 'apoc.text.split': {
766
- label: string;
767
- };
768
- 'apoc.text.swapCase': {
769
- label: string;
770
- };
771
- 'apoc.text.toCypher': {
772
- label: string;
773
- };
774
- 'apoc.text.toUpperCase': {
775
- label: string;
776
- };
777
- 'apoc.text.upperCamelCase': {
778
- label: string;
779
- };
780
- 'apoc.text.urldecode': {
781
- label: string;
782
- };
783
- 'apoc.text.urlencode': {
784
- label: string;
785
- };
786
- 'apoc.trigger.nodesByLabel': {
787
- label: string;
788
- };
789
- 'apoc.trigger.propertiesByKey': {
790
- label: string;
791
- };
792
- 'apoc.trigger.toNode': {
793
- label: string;
794
- };
795
- 'apoc.trigger.toRelationship': {
796
- label: string;
797
- };
798
- 'apoc.ttl.config': {
799
- label: string;
800
- };
801
- 'apoc.util.compress': {
802
- label: string;
803
- };
804
- 'apoc.util.decompress': {
805
- label: string;
806
- };
807
- 'apoc.util.md5': {
808
- label: string;
809
- };
810
- 'apoc.util.sha1': {
811
- label: string;
812
- };
813
- 'apoc.util.sha256': {
814
- label: string;
815
- };
816
- 'apoc.util.sha384': {
817
- label: string;
818
- };
819
- 'apoc.util.sha512': {
820
- label: string;
821
- };
822
- 'apoc.util.validatePredicate': {
823
- label: string;
824
- };
825
- 'apoc.version': {
826
- label: string;
827
- };
828
- 'apoc.xml.parse': {
829
- label: string;
830
- };
831
- asin: {
832
- label: string;
833
- };
834
- atan: {
835
- label: string;
836
- };
837
- atan2: {
838
- label: string;
839
- };
840
- avg: {
841
- label: string;
842
- };
843
- ceil: {
844
- label: string;
845
- };
846
- coalesce: {
847
- label: string;
848
- };
849
- collect: {
850
- label: string;
851
- };
852
- cos: {
853
- label: string;
854
- };
855
- cot: {
856
- label: string;
857
- };
858
- count: {
859
- label: string;
860
- };
861
- date: {
862
- label: string;
863
- };
864
- 'date.realtime': {
865
- label: string;
866
- };
867
- 'date.statement': {
868
- label: string;
869
- };
870
- 'date.transaction': {
871
- label: string;
872
- };
873
- 'date.truncate': {
874
- label: string;
875
- };
876
- datetime: {
877
- label: string;
878
- };
879
- 'datetime.fromepoch': {
880
- label: string;
881
- };
882
- 'datetime.fromepochmillis': {
883
- label: string;
884
- };
885
- 'datetime.realtime': {
886
- label: string;
887
- };
888
- 'datetime.statement': {
889
- label: string;
890
- };
891
- 'datetime.transaction': {
892
- label: string;
893
- };
894
- 'datetime.truncate': {
895
- label: string;
896
- };
897
- degrees: {
898
- label: string;
899
- };
900
- duration: {
901
- label: string;
902
- };
903
- 'duration.between': {
904
- label: string;
905
- };
906
- 'duration.inDays': {
907
- label: string;
908
- };
909
- 'duration.inMonths': {
910
- label: string;
911
- };
912
- 'duration.inSeconds': {
913
- label: string;
914
- };
915
- e: {
916
- label: string;
917
- };
918
- endNode: {
919
- label: string;
920
- };
921
- exists: {
922
- label: string;
923
- };
924
- exp: {
925
- label: string;
926
- };
927
- file: {
928
- label: string;
929
- };
930
- floor: {
931
- label: string;
932
- };
933
- 'gds.alpha.linkprediction.adamicAdar': {
934
- label: string;
935
- };
936
- 'gds.alpha.linkprediction.commonNeighbors': {
937
- label: string;
938
- };
939
- 'gds.alpha.linkprediction.preferentialAttachment': {
940
- label: string;
941
- };
942
- 'gds.alpha.linkprediction.resourceAllocation': {
943
- label: string;
944
- };
945
- 'gds.alpha.linkprediction.sameCommunity': {
946
- label: string;
947
- };
948
- 'gds.alpha.linkprediction.totalNeighbors': {
949
- label: string;
950
- };
951
- 'gds.alpha.ml.oneHotEncoding': {
952
- label: string;
953
- };
954
- 'gds.graph.exists': {
955
- label: string;
956
- };
957
- 'gds.graph.project': {
958
- label: string;
959
- };
960
- 'gds.similarity.cosine': {
961
- label: string;
962
- };
963
- 'gds.similarity.euclidean': {
964
- label: string;
965
- };
966
- 'gds.similarity.euclideanDistance': {
967
- label: string;
968
- };
969
- 'gds.similarity.jaccard': {
970
- label: string;
971
- };
972
- 'gds.similarity.overlap': {
973
- label: string;
974
- };
975
- 'gds.similarity.pearson': {
976
- label: string;
977
- };
978
- 'gds.util.NaN': {
979
- label: string;
980
- };
981
- 'gds.util.asNode': {
982
- label: string;
983
- };
984
- 'gds.util.asNodes': {
985
- label: string;
986
- };
987
- 'gds.util.infinity': {
988
- label: string;
989
- };
990
- 'gds.util.isFinite': {
991
- label: string;
992
- };
993
- 'gds.util.isInfinite': {
994
- label: string;
995
- };
996
- 'gds.util.nodeProperty': {
997
- label: string;
998
- };
999
- 'gds.version': {
1000
- label: string;
1001
- };
1002
- haversin: {
1003
- label: string;
1004
- };
1005
- head: {
1006
- label: string;
1007
- };
1008
- id: {
1009
- label: string;
1010
- };
1011
- isEmpty: {
1012
- label: string;
1013
- };
1014
- keys: {
1015
- label: string;
1016
- };
1017
- labels: {
1018
- label: string;
1019
- };
1020
- last: {
1021
- label: string;
1022
- };
1023
- left: {
1024
- label: string;
1025
- };
1026
- length: {
1027
- label: string;
1028
- };
1029
- linenumber: {
1030
- label: string;
1031
- };
1032
- localdatetime: {
1033
- label: string;
1034
- };
1035
- 'localdatetime.realtime': {
1036
- label: string;
1037
- };
1038
- 'localdatetime.statement': {
1039
- label: string;
1040
- };
1041
- 'localdatetime.transaction': {
1042
- label: string;
1043
- };
1044
- 'localdatetime.truncate': {
1045
- label: string;
1046
- };
1047
- localtime: {
1048
- label: string;
1049
- };
1050
- 'localtime.realtime': {
1051
- label: string;
1052
- };
1053
- 'localtime.statement': {
1054
- label: string;
1055
- };
1056
- 'localtime.transaction': {
1057
- label: string;
1058
- };
1059
- 'localtime.truncate': {
1060
- label: string;
1061
- };
1062
- log: {
1063
- label: string;
1064
- };
1065
- log10: {
1066
- label: string;
1067
- };
1068
- ltrim: {
1069
- label: string;
1070
- };
1071
- max: {
1072
- label: string;
1073
- };
1074
- min: {
1075
- label: string;
1076
- };
1077
- nodes: {
1078
- label: string;
1079
- };
1080
- none: {
1081
- label: string;
1082
- };
1083
- percentileCont: {
1084
- label: string;
1085
- };
1086
- percentileDisc: {
1087
- label: string;
1088
- };
1089
- pi: {
1090
- label: string;
1091
- };
1092
- point: {
1093
- label: string;
1094
- };
1095
- 'point.distance': {
1096
- label: string;
1097
- };
1098
- 'point.withinBBox': {
1099
- label: string;
1100
- };
1101
- properties: {
1102
- label: string;
1103
- };
1104
- radians: {
1105
- label: string;
1106
- };
1107
- rand: {
1108
- label: string;
1109
- };
1110
- randomUUID: {
1111
- label: string;
1112
- };
1113
- range: {
1114
- label: string;
1115
- };
1116
- reduce: {
1117
- label: string;
1118
- };
1119
- relationships: {
1120
- label: string;
1121
- };
1122
- replace: {
1123
- label: string;
1124
- };
1125
- reverse: {
1126
- label: string;
1127
- };
1128
- right: {
1129
- label: string;
1130
- };
1131
- round: {
1132
- label: string;
1133
- };
1134
- rtrim: {
1135
- label: string;
1136
- };
1137
- sign: {
1138
- label: string;
1139
- };
1140
- sin: {
1141
- label: string;
1142
- };
1143
- single: {
1144
- label: string;
1145
- };
1146
- size: {
1147
- label: string;
1148
- };
1149
- split: {
1150
- label: string;
1151
- };
1152
- sqrt: {
1153
- label: string;
1154
- };
1155
- startNode: {
1156
- label: string;
1157
- };
1158
- stdev: {
1159
- label: string;
1160
- };
1161
- stdevp: {
1162
- label: string;
1163
- };
1164
- substring: {
1165
- label: string;
1166
- };
1167
- sum: {
1168
- label: string;
1169
- };
1170
- tail: {
1171
- label: string;
1172
- };
1173
- tan: {
1174
- label: string;
1175
- };
1176
- time: {
1177
- label: string;
1178
- };
1179
- 'time.realtime': {
1180
- label: string;
1181
- };
1182
- 'time.statement': {
1183
- label: string;
1184
- };
1185
- 'time.transaction': {
1186
- label: string;
1187
- };
1188
- 'time.truncate': {
1189
- label: string;
1190
- };
1191
- toBoolean: {
1192
- label: string;
1193
- };
1194
- toBooleanList: {
1195
- label: string;
1196
- };
1197
- toBooleanOrNull: {
1198
- label: string;
1199
- };
1200
- toFloat: {
1201
- label: string;
1202
- };
1203
- toFloatList: {
1204
- label: string;
1205
- };
1206
- toFloatOrNull: {
1207
- label: string;
1208
- };
1209
- toInteger: {
1210
- label: string;
1211
- };
1212
- toIntegerList: {
1213
- label: string;
1214
- };
1215
- toIntegerOrNull: {
1216
- label: string;
1217
- };
1218
- toLower: {
1219
- label: string;
1220
- };
1221
- toStringList: {
1222
- label: string;
1223
- };
1224
- toStringOrNull: {
1225
- label: string;
1226
- };
1227
- toUpper: {
1228
- label: string;
1229
- };
1230
- trim: {
1231
- label: string;
1232
- };
1233
- type: {
1234
- label: string;
1235
- };
1236
- };
1237
- procedureSignatures: {
1238
- 'apoc.algo.aStar': {
1239
- label: string;
1240
- };
1241
- 'apoc.algo.aStarConfig': {
1242
- label: string;
1243
- };
1244
- 'apoc.algo.aStarWithPoint': {
1245
- label: string;
1246
- };
1247
- 'apoc.algo.allSimplePaths': {
1248
- label: string;
1249
- };
1250
- 'apoc.algo.cover': {
1251
- label: string;
1252
- };
1253
- 'apoc.algo.dijkstra': {
1254
- label: string;
1255
- };
1256
- 'apoc.algo.dijkstraWithDefaultWeight': {
1257
- label: string;
1258
- };
1259
- 'apoc.algo.travellingSalesman': {
1260
- label: string;
1261
- };
1262
- 'apoc.atomic.add': {
1263
- label: string;
1264
- };
1265
- 'apoc.atomic.concat': {
1266
- label: string;
1267
- };
1268
- 'apoc.atomic.insert': {
1269
- label: string;
1270
- };
1271
- 'apoc.atomic.remove': {
1272
- label: string;
1273
- };
1274
- 'apoc.atomic.subtract': {
1275
- label: string;
1276
- };
1277
- 'apoc.atomic.update': {
1278
- label: string;
1279
- };
1280
- 'apoc.bolt.execute': {
1281
- label: string;
1282
- };
1283
- 'apoc.bolt.load': {
1284
- label: string;
1285
- };
1286
- 'apoc.bolt.load.fromLocal': {
1287
- label: string;
1288
- };
1289
- 'apoc.case': {
1290
- label: string;
1291
- };
1292
- 'apoc.cluster.graph': {
1293
- label: string;
1294
- };
1295
- 'apoc.coll.elements': {
1296
- label: string;
1297
- };
1298
- 'apoc.coll.pairWithOffset': {
1299
- label: string;
1300
- };
1301
- 'apoc.coll.partition': {
1302
- label: string;
1303
- };
1304
- 'apoc.coll.split': {
1305
- label: string;
1306
- };
1307
- 'apoc.coll.zipToRows': {
1308
- label: string;
1309
- };
1310
- 'apoc.config.list': {
1311
- label: string;
1312
- };
1313
- 'apoc.config.map': {
1314
- label: string;
1315
- };
1316
- 'apoc.convert.setJsonProperty': {
1317
- label: string;
1318
- };
1319
- 'apoc.convert.toTree': {
1320
- label: string;
1321
- };
1322
- 'apoc.couchbase.append': {
1323
- label: string;
1324
- };
1325
- 'apoc.couchbase.exists': {
1326
- label: string;
1327
- };
1328
- 'apoc.couchbase.get': {
1329
- label: string;
1330
- };
1331
- 'apoc.couchbase.insert': {
1332
- label: string;
1333
- };
1334
- 'apoc.couchbase.namedParamsQuery': {
1335
- label: string;
1336
- };
1337
- 'apoc.couchbase.posParamsQuery': {
1338
- label: string;
1339
- };
1340
- 'apoc.couchbase.prepend': {
1341
- label: string;
1342
- };
1343
- 'apoc.couchbase.query': {
1344
- label: string;
1345
- };
1346
- 'apoc.couchbase.remove': {
1347
- label: string;
1348
- };
1349
- 'apoc.couchbase.replace': {
1350
- label: string;
1351
- };
1352
- 'apoc.couchbase.upsert': {
1353
- label: string;
1354
- };
1355
- 'apoc.create.addLabels': {
1356
- label: string;
1357
- };
1358
- 'apoc.create.clonePathToVirtual': {
1359
- label: string;
1360
- };
1361
- 'apoc.create.clonePathsToVirtual': {
1362
- label: string;
1363
- };
1364
- 'apoc.create.node': {
1365
- label: string;
1366
- };
1367
- 'apoc.create.nodes': {
1368
- label: string;
1369
- };
1370
- 'apoc.create.relationship': {
1371
- label: string;
1372
- };
1373
- 'apoc.create.removeLabels': {
1374
- label: string;
1375
- };
1376
- 'apoc.create.removeProperties': {
1377
- label: string;
1378
- };
1379
- 'apoc.create.removeRelProperties': {
1380
- label: string;
1381
- };
1382
- 'apoc.create.setLabels': {
1383
- label: string;
1384
- };
1385
- 'apoc.create.setProperties': {
1386
- label: string;
1387
- };
1388
- 'apoc.create.setProperty': {
1389
- label: string;
1390
- };
1391
- 'apoc.create.setRelProperties': {
1392
- label: string;
1393
- };
1394
- 'apoc.create.setRelProperty': {
1395
- label: string;
1396
- };
1397
- 'apoc.create.uuids': {
1398
- label: string;
1399
- };
1400
- 'apoc.create.vNode': {
1401
- label: string;
1402
- };
1403
- 'apoc.create.vNodes': {
1404
- label: string;
1405
- };
1406
- 'apoc.create.vPattern': {
1407
- label: string;
1408
- };
1409
- 'apoc.create.vPatternFull': {
1410
- label: string;
1411
- };
1412
- 'apoc.create.vRelationship': {
1413
- label: string;
1414
- };
1415
- 'apoc.create.virtualPath': {
1416
- label: string;
1417
- };
1418
- 'apoc.custom.asFunction': {
1419
- label: string;
1420
- };
1421
- 'apoc.custom.asProcedure': {
1422
- label: string;
1423
- };
1424
- 'apoc.custom.declareFunction': {
1425
- label: string;
1426
- };
1427
- 'apoc.custom.declareProcedure': {
1428
- label: string;
1429
- };
1430
- 'apoc.custom.list': {
1431
- label: string;
1432
- };
1433
- 'apoc.custom.removeFunction': {
1434
- label: string;
1435
- };
1436
- 'apoc.custom.removeProcedure': {
1437
- label: string;
1438
- };
1439
- 'apoc.cypher.doIt': {
1440
- label: string;
1441
- };
1442
- 'apoc.cypher.mapParallel': {
1443
- label: string;
1444
- };
1445
- 'apoc.cypher.mapParallel2': {
1446
- label: string;
1447
- };
1448
- 'apoc.cypher.parallel': {
1449
- label: string;
1450
- };
1451
- 'apoc.cypher.parallel2': {
1452
- label: string;
1453
- };
1454
- 'apoc.cypher.run': {
1455
- label: string;
1456
- };
1457
- 'apoc.cypher.runFile': {
1458
- label: string;
1459
- };
1460
- 'apoc.cypher.runFiles': {
1461
- label: string;
1462
- };
1463
- 'apoc.cypher.runMany': {
1464
- label: string;
1465
- };
1466
- 'apoc.cypher.runManyReadOnly': {
1467
- label: string;
1468
- };
1469
- 'apoc.cypher.runSchema': {
1470
- label: string;
1471
- };
1472
- 'apoc.cypher.runSchemaFile': {
1473
- label: string;
1474
- };
1475
- 'apoc.cypher.runSchemaFiles': {
1476
- label: string;
1477
- };
1478
- 'apoc.cypher.runTimeboxed': {
1479
- label: string;
1480
- };
1481
- 'apoc.cypher.runWrite': {
1482
- label: string;
1483
- };
1484
- 'apoc.date.expire': {
1485
- label: string;
1486
- };
1487
- 'apoc.date.expireIn': {
1488
- label: string;
1489
- };
1490
- 'apoc.diff.graphs': {
1491
- label: string;
1492
- };
1493
- 'apoc.do.case': {
1494
- label: string;
1495
- };
1496
- 'apoc.do.when': {
1497
- label: string;
1498
- };
1499
- 'apoc.dv.catalog.add': {
1500
- label: string;
1501
- };
1502
- 'apoc.dv.catalog.list': {
1503
- label: string;
1504
- };
1505
- 'apoc.dv.catalog.remove': {
1506
- label: string;
1507
- };
1508
- 'apoc.dv.query': {
1509
- label: string;
1510
- };
1511
- 'apoc.dv.queryAndLink': {
1512
- label: string;
1513
- };
1514
- 'apoc.es.get': {
1515
- label: string;
1516
- };
1517
- 'apoc.es.getRaw': {
1518
- label: string;
1519
- };
1520
- 'apoc.es.post': {
1521
- label: string;
1522
- };
1523
- 'apoc.es.postRaw': {
1524
- label: string;
1525
- };
1526
- 'apoc.es.put': {
1527
- label: string;
1528
- };
1529
- 'apoc.es.query': {
1530
- label: string;
1531
- };
1532
- 'apoc.es.stats': {
1533
- label: string;
1534
- };
1535
- 'apoc.example.movies': {
1536
- label: string;
1537
- };
1538
- 'apoc.export.arrow.all': {
1539
- label: string;
1540
- };
1541
- 'apoc.export.arrow.graph': {
1542
- label: string;
1543
- };
1544
- 'apoc.export.arrow.query': {
1545
- label: string;
1546
- };
1547
- 'apoc.export.arrow.stream.all': {
1548
- label: string;
1549
- };
1550
- 'apoc.export.arrow.stream.graph': {
1551
- label: string;
1552
- };
1553
- 'apoc.export.arrow.stream.query': {
1554
- label: string;
1555
- };
1556
- 'apoc.export.csv.all': {
1557
- label: string;
1558
- };
1559
- 'apoc.export.csv.data': {
1560
- label: string;
1561
- };
1562
- 'apoc.export.csv.graph': {
1563
- label: string;
1564
- };
1565
- 'apoc.export.csv.query': {
1566
- label: string;
1567
- };
1568
- 'apoc.export.cypher.all': {
1569
- label: string;
1570
- };
1571
- 'apoc.export.cypher.data': {
1572
- label: string;
1573
- };
1574
- 'apoc.export.cypher.graph': {
1575
- label: string;
1576
- };
1577
- 'apoc.export.cypher.query': {
1578
- label: string;
1579
- };
1580
- 'apoc.export.cypher.schema': {
1581
- label: string;
1582
- };
1583
- 'apoc.export.cypherAll': {
1584
- label: string;
1585
- };
1586
- 'apoc.export.cypherData': {
1587
- label: string;
1588
- };
1589
- 'apoc.export.cypherGraph': {
1590
- label: string;
1591
- };
1592
- 'apoc.export.cypherQuery': {
1593
- label: string;
1594
- };
1595
- 'apoc.export.graphml.all': {
1596
- label: string;
1597
- };
1598
- 'apoc.export.graphml.data': {
1599
- label: string;
1600
- };
1601
- 'apoc.export.graphml.graph': {
1602
- label: string;
1603
- };
1604
- 'apoc.export.graphml.query': {
1605
- label: string;
1606
- };
1607
- 'apoc.export.json.all': {
1608
- label: string;
1609
- };
1610
- 'apoc.export.json.data': {
1611
- label: string;
1612
- };
1613
- 'apoc.export.json.graph': {
1614
- label: string;
1615
- };
1616
- 'apoc.export.json.query': {
1617
- label: string;
1618
- };
1619
- 'apoc.generate.ba': {
1620
- label: string;
1621
- };
1622
- 'apoc.generate.complete': {
1623
- label: string;
1624
- };
1625
- 'apoc.generate.er': {
1626
- label: string;
1627
- };
1628
- 'apoc.generate.simple': {
1629
- label: string;
1630
- };
1631
- 'apoc.generate.ws': {
1632
- label: string;
1633
- };
1634
- 'apoc.gephi.add': {
1635
- label: string;
1636
- };
1637
- 'apoc.get.nodes': {
1638
- label: string;
1639
- };
1640
- 'apoc.get.rels': {
1641
- label: string;
1642
- };
1643
- 'apoc.graph.from': {
1644
- label: string;
1645
- };
1646
- 'apoc.graph.fromCypher': {
1647
- label: string;
1648
- };
1649
- 'apoc.graph.fromDB': {
1650
- label: string;
1651
- };
1652
- 'apoc.graph.fromData': {
1653
- label: string;
1654
- };
1655
- 'apoc.graph.fromDocument': {
1656
- label: string;
1657
- };
1658
- 'apoc.graph.fromPath': {
1659
- label: string;
1660
- };
1661
- 'apoc.graph.fromPaths': {
1662
- label: string;
1663
- };
1664
- 'apoc.graph.validateDocument': {
1665
- label: string;
1666
- };
1667
- 'apoc.help': {
1668
- label: string;
1669
- };
1670
- 'apoc.import.csv': {
1671
- label: string;
1672
- };
1673
- 'apoc.import.graphml': {
1674
- label: string;
1675
- };
1676
- 'apoc.import.json': {
1677
- label: string;
1678
- };
1679
- 'apoc.import.xml': {
1680
- label: string;
1681
- };
1682
- 'apoc.json.validate': {
1683
- label: string;
1684
- };
1685
- 'apoc.load.arrow': {
1686
- label: string;
1687
- };
1688
- 'apoc.load.arrow.stream': {
1689
- label: string;
1690
- };
1691
- 'apoc.load.csv': {
1692
- label: string;
1693
- };
1694
- 'apoc.load.csvParams': {
1695
- label: string;
1696
- };
1697
- 'apoc.load.directory': {
1698
- label: string;
1699
- };
1700
- 'apoc.load.directory.async.add': {
1701
- label: string;
1702
- };
1703
- 'apoc.load.directory.async.list': {
1704
- label: string;
1705
- };
1706
- 'apoc.load.directory.async.remove': {
1707
- label: string;
1708
- };
1709
- 'apoc.load.directory.async.removeAll': {
1710
- label: string;
1711
- };
1712
- 'apoc.load.driver': {
1713
- label: string;
1714
- };
1715
- 'apoc.load.html': {
1716
- label: string;
1717
- };
1718
- 'apoc.load.htmlPlainText': {
1719
- label: string;
1720
- };
1721
- 'apoc.load.jdbc': {
1722
- label: string;
1723
- };
1724
- 'apoc.load.jdbcParams': {
1725
- label: string;
1726
- };
1727
- 'apoc.load.jdbcUpdate': {
1728
- label: string;
1729
- };
1730
- 'apoc.load.json': {
1731
- label: string;
1732
- };
1733
- 'apoc.load.jsonArray': {
1734
- label: string;
1735
- };
1736
- 'apoc.load.jsonParams': {
1737
- label: string;
1738
- };
1739
- 'apoc.load.ldap': {
1740
- label: string;
1741
- };
1742
- 'apoc.load.xml': {
1743
- label: string;
1744
- };
1745
- 'apoc.lock.all': {
1746
- label: string;
1747
- };
1748
- 'apoc.lock.nodes': {
1749
- label: string;
1750
- };
1751
- 'apoc.lock.read.nodes': {
1752
- label: string;
1753
- };
1754
- 'apoc.lock.read.rels': {
1755
- label: string;
1756
- };
1757
- 'apoc.lock.rels': {
1758
- label: string;
1759
- };
1760
- 'apoc.log.debug': {
1761
- label: string;
1762
- };
1763
- 'apoc.log.error': {
1764
- label: string;
1765
- };
1766
- 'apoc.log.info': {
1767
- label: string;
1768
- };
1769
- 'apoc.log.stream': {
1770
- label: string;
1771
- };
1772
- 'apoc.log.warn': {
1773
- label: string;
1774
- };
1775
- 'apoc.math.regr': {
1776
- label: string;
1777
- };
1778
- 'apoc.merge.node': {
1779
- label: string;
1780
- };
1781
- 'apoc.merge.node.eager': {
1782
- label: string;
1783
- };
1784
- 'apoc.merge.nodeWithStats': {
1785
- label: string;
1786
- };
1787
- 'apoc.merge.nodeWithStats.eager': {
1788
- label: string;
1789
- };
1790
- 'apoc.merge.relationship': {
1791
- label: string;
1792
- };
1793
- 'apoc.merge.relationship.eager': {
1794
- label: string;
1795
- };
1796
- 'apoc.merge.relationshipWithStats': {
1797
- label: string;
1798
- };
1799
- 'apoc.merge.relationshipWithStats.eager': {
1800
- label: string;
1801
- };
1802
- 'apoc.meta.data': {
1803
- label: string;
1804
- };
1805
- 'apoc.meta.data.of': {
1806
- label: string;
1807
- };
1808
- 'apoc.meta.graph': {
1809
- label: string;
1810
- };
1811
- 'apoc.meta.graph.of': {
1812
- label: string;
1813
- };
1814
- 'apoc.meta.graphSample': {
1815
- label: string;
1816
- };
1817
- 'apoc.meta.nodeTypeProperties': {
1818
- label: string;
1819
- };
1820
- 'apoc.meta.relTypeProperties': {
1821
- label: string;
1822
- };
1823
- 'apoc.meta.schema': {
1824
- label: string;
1825
- };
1826
- 'apoc.meta.stats': {
1827
- label: string;
1828
- };
1829
- 'apoc.meta.subGraph': {
1830
- label: string;
1831
- };
1832
- 'apoc.metrics.get': {
1833
- label: string;
1834
- };
1835
- 'apoc.metrics.list': {
1836
- label: string;
1837
- };
1838
- 'apoc.metrics.storage': {
1839
- label: string;
1840
- };
1841
- 'apoc.model.jdbc': {
1842
- label: string;
1843
- };
1844
- 'apoc.mongo.aggregate': {
1845
- label: string;
1846
- };
1847
- 'apoc.mongo.count': {
1848
- label: string;
1849
- };
1850
- 'apoc.mongo.delete': {
1851
- label: string;
1852
- };
1853
- 'apoc.mongo.find': {
1854
- label: string;
1855
- };
1856
- 'apoc.mongo.insert': {
1857
- label: string;
1858
- };
1859
- 'apoc.mongo.update': {
1860
- label: string;
1861
- };
1862
- 'apoc.mongodb.count': {
1863
- label: string;
1864
- };
1865
- 'apoc.mongodb.delete': {
1866
- label: string;
1867
- };
1868
- 'apoc.mongodb.find': {
1869
- label: string;
1870
- };
1871
- 'apoc.mongodb.first': {
1872
- label: string;
1873
- };
1874
- 'apoc.mongodb.get': {
1875
- label: string;
1876
- };
1877
- 'apoc.mongodb.get.byObjectId': {
1878
- label: string;
1879
- };
1880
- 'apoc.mongodb.insert': {
1881
- label: string;
1882
- };
1883
- 'apoc.mongodb.update': {
1884
- label: string;
1885
- };
1886
- 'apoc.monitor.ids': {
1887
- label: string;
1888
- };
1889
- 'apoc.monitor.kernel': {
1890
- label: string;
1891
- };
1892
- 'apoc.monitor.store': {
1893
- label: string;
1894
- };
1895
- 'apoc.monitor.tx': {
1896
- label: string;
1897
- };
1898
- 'apoc.neighbors.athop': {
1899
- label: string;
1900
- };
1901
- 'apoc.neighbors.athop.count': {
1902
- label: string;
1903
- };
1904
- 'apoc.neighbors.byhop': {
1905
- label: string;
1906
- };
1907
- 'apoc.neighbors.byhop.count': {
1908
- label: string;
1909
- };
1910
- 'apoc.neighbors.tohop': {
1911
- label: string;
1912
- };
1913
- 'apoc.neighbors.tohop.count': {
1914
- label: string;
1915
- };
1916
- 'apoc.nlp.azure.entities.graph': {
1917
- label: string;
1918
- };
1919
- 'apoc.nlp.azure.entities.stream': {
1920
- label: string;
1921
- };
1922
- 'apoc.nlp.azure.keyPhrases.graph': {
1923
- label: string;
1924
- };
1925
- 'apoc.nlp.azure.keyPhrases.stream': {
1926
- label: string;
1927
- };
1928
- 'apoc.nlp.azure.sentiment.graph': {
1929
- label: string;
1930
- };
1931
- 'apoc.nlp.azure.sentiment.stream': {
1932
- label: string;
1933
- };
1934
- 'apoc.nodes.collapse': {
1935
- label: string;
1936
- };
1937
- 'apoc.nodes.cycles': {
1938
- label: string;
1939
- };
1940
- 'apoc.nodes.delete': {
1941
- label: string;
1942
- };
1943
- 'apoc.nodes.get': {
1944
- label: string;
1945
- };
1946
- 'apoc.nodes.group': {
1947
- label: string;
1948
- };
1949
- 'apoc.nodes.link': {
1950
- label: string;
1951
- };
1952
- 'apoc.nodes.rels': {
1953
- label: string;
1954
- };
1955
- 'apoc.path.expand': {
1956
- label: string;
1957
- };
1958
- 'apoc.path.expandConfig': {
1959
- label: string;
1960
- };
1961
- 'apoc.path.spanningTree': {
1962
- label: string;
1963
- };
1964
- 'apoc.path.subgraphAll': {
1965
- label: string;
1966
- };
1967
- 'apoc.path.subgraphNodes': {
1968
- label: string;
1969
- };
1970
- 'apoc.periodic.cancel': {
1971
- label: string;
1972
- };
1973
- 'apoc.periodic.commit': {
1974
- label: string;
1975
- };
1976
- 'apoc.periodic.countdown': {
1977
- label: string;
1978
- };
1979
- 'apoc.periodic.iterate': {
1980
- label: string;
1981
- };
1982
- 'apoc.periodic.list': {
1983
- label: string;
1984
- };
1985
- 'apoc.periodic.repeat': {
1986
- label: string;
1987
- };
1988
- 'apoc.periodic.rock_n_roll': {
1989
- label: string;
1990
- };
1991
- 'apoc.periodic.rock_n_roll_while': {
1992
- label: string;
1993
- };
1994
- 'apoc.periodic.submit': {
1995
- label: string;
1996
- };
1997
- 'apoc.periodic.truncate': {
1998
- label: string;
1999
- };
2000
- 'apoc.redis.append': {
2001
- label: string;
2002
- };
2003
- 'apoc.redis.configGet': {
2004
- label: string;
2005
- };
2006
- 'apoc.redis.configSet': {
2007
- label: string;
2008
- };
2009
- 'apoc.redis.copy': {
2010
- label: string;
2011
- };
2012
- 'apoc.redis.eval': {
2013
- label: string;
2014
- };
2015
- 'apoc.redis.exists': {
2016
- label: string;
2017
- };
2018
- 'apoc.redis.get': {
2019
- label: string;
2020
- };
2021
- 'apoc.redis.getSet': {
2022
- label: string;
2023
- };
2024
- 'apoc.redis.hdel': {
2025
- label: string;
2026
- };
2027
- 'apoc.redis.hexists': {
2028
- label: string;
2029
- };
2030
- 'apoc.redis.hget': {
2031
- label: string;
2032
- };
2033
- 'apoc.redis.hgetall': {
2034
- label: string;
2035
- };
2036
- 'apoc.redis.hincrby': {
2037
- label: string;
2038
- };
2039
- 'apoc.redis.hset': {
2040
- label: string;
2041
- };
2042
- 'apoc.redis.incrby': {
2043
- label: string;
2044
- };
2045
- 'apoc.redis.info': {
2046
- label: string;
2047
- };
2048
- 'apoc.redis.lrange': {
2049
- label: string;
2050
- };
2051
- 'apoc.redis.persist': {
2052
- label: string;
2053
- };
2054
- 'apoc.redis.pexpire': {
2055
- label: string;
2056
- };
2057
- 'apoc.redis.pop': {
2058
- label: string;
2059
- };
2060
- 'apoc.redis.pttl': {
2061
- label: string;
2062
- };
2063
- 'apoc.redis.push': {
2064
- label: string;
2065
- };
2066
- 'apoc.redis.sadd': {
2067
- label: string;
2068
- };
2069
- 'apoc.redis.scard': {
2070
- label: string;
2071
- };
2072
- 'apoc.redis.smembers': {
2073
- label: string;
2074
- };
2075
- 'apoc.redis.spop': {
2076
- label: string;
2077
- };
2078
- 'apoc.redis.sunion': {
2079
- label: string;
2080
- };
2081
- 'apoc.redis.zadd': {
2082
- label: string;
2083
- };
2084
- 'apoc.redis.zcard': {
2085
- label: string;
2086
- };
2087
- 'apoc.redis.zrangebyscore': {
2088
- label: string;
2089
- };
2090
- 'apoc.redis.zrem': {
2091
- label: string;
2092
- };
2093
- 'apoc.refactor.categorize': {
2094
- label: string;
2095
- };
2096
- 'apoc.refactor.cloneNodes': {
2097
- label: string;
2098
- };
2099
- 'apoc.refactor.cloneNodesWithRelationships': {
2100
- label: string;
2101
- };
2102
- 'apoc.refactor.cloneSubgraph': {
2103
- label: string;
2104
- };
2105
- 'apoc.refactor.cloneSubgraphFromPaths': {
2106
- label: string;
2107
- };
2108
- 'apoc.refactor.collapseNode': {
2109
- label: string;
2110
- };
2111
- 'apoc.refactor.deleteAndReconnect': {
2112
- label: string;
2113
- };
2114
- 'apoc.refactor.extractNode': {
2115
- label: string;
2116
- };
2117
- 'apoc.refactor.from': {
2118
- label: string;
2119
- };
2120
- 'apoc.refactor.invert': {
2121
- label: string;
2122
- };
2123
- 'apoc.refactor.mergeNodes': {
2124
- label: string;
2125
- };
2126
- 'apoc.refactor.mergeRelationships': {
2127
- label: string;
2128
- };
2129
- 'apoc.refactor.normalizeAsBoolean': {
2130
- label: string;
2131
- };
2132
- 'apoc.refactor.rename.label': {
2133
- label: string;
2134
- };
2135
- 'apoc.refactor.rename.nodeProperty': {
2136
- label: string;
2137
- };
2138
- 'apoc.refactor.rename.type': {
2139
- label: string;
2140
- };
2141
- 'apoc.refactor.rename.typeProperty': {
2142
- label: string;
2143
- };
2144
- 'apoc.refactor.setType': {
2145
- label: string;
2146
- };
2147
- 'apoc.refactor.to': {
2148
- label: string;
2149
- };
2150
- 'apoc.schema.assert': {
2151
- label: string;
2152
- };
2153
- 'apoc.schema.nodes': {
2154
- label: string;
2155
- };
2156
- 'apoc.schema.properties.distinct': {
2157
- label: string;
2158
- };
2159
- 'apoc.schema.properties.distinctCount': {
2160
- label: string;
2161
- };
2162
- 'apoc.schema.relationships': {
2163
- label: string;
2164
- };
2165
- 'apoc.search.multiSearchReduced': {
2166
- label: string;
2167
- };
2168
- 'apoc.search.node': {
2169
- label: string;
2170
- };
2171
- 'apoc.search.nodeAll': {
2172
- label: string;
2173
- };
2174
- 'apoc.search.nodeAllReduced': {
2175
- label: string;
2176
- };
2177
- 'apoc.search.nodeReduced': {
2178
- label: string;
2179
- };
2180
- 'apoc.spatial.geocode': {
2181
- label: string;
2182
- };
2183
- 'apoc.spatial.geocodeOnce': {
2184
- label: string;
2185
- };
2186
- 'apoc.spatial.reverseGeocode': {
2187
- label: string;
2188
- };
2189
- 'apoc.spatial.sortByDistance': {
2190
- label: string;
2191
- };
2192
- 'apoc.static.get': {
2193
- label: string;
2194
- };
2195
- 'apoc.static.list': {
2196
- label: string;
2197
- };
2198
- 'apoc.static.set': {
2199
- label: string;
2200
- };
2201
- 'apoc.stats.degrees': {
2202
- label: string;
2203
- };
2204
- 'apoc.systemdb.execute': {
2205
- label: string;
2206
- };
2207
- 'apoc.systemdb.export.metadata': {
2208
- label: string;
2209
- };
2210
- 'apoc.systemdb.graph': {
2211
- label: string;
2212
- };
2213
- 'apoc.text.doubleMetaphone': {
2214
- label: string;
2215
- };
2216
- 'apoc.text.phonetic': {
2217
- label: string;
2218
- };
2219
- 'apoc.text.phoneticDelta': {
2220
- label: string;
2221
- };
2222
- 'apoc.trigger.add': {
2223
- label: string;
2224
- };
2225
- 'apoc.trigger.drop': {
2226
- label: string;
2227
- };
2228
- 'apoc.trigger.dropAll': {
2229
- label: string;
2230
- };
2231
- 'apoc.trigger.install': {
2232
- label: string;
2233
- };
2234
- 'apoc.trigger.list': {
2235
- label: string;
2236
- };
2237
- 'apoc.trigger.pause': {
2238
- label: string;
2239
- };
2240
- 'apoc.trigger.remove': {
2241
- label: string;
2242
- };
2243
- 'apoc.trigger.removeAll': {
2244
- label: string;
2245
- };
2246
- 'apoc.trigger.resume': {
2247
- label: string;
2248
- };
2249
- 'apoc.trigger.show': {
2250
- label: string;
2251
- };
2252
- 'apoc.trigger.start': {
2253
- label: string;
2254
- };
2255
- 'apoc.trigger.stop': {
2256
- label: string;
2257
- };
2258
- 'apoc.ttl.expire': {
2259
- label: string;
2260
- };
2261
- 'apoc.ttl.expireIn': {
2262
- label: string;
2263
- };
2264
- 'apoc.util.sleep': {
2265
- label: string;
2266
- };
2267
- 'apoc.util.validate': {
2268
- label: string;
2269
- };
2270
- 'apoc.uuid.drop': {
2271
- label: string;
2272
- };
2273
- 'apoc.uuid.dropAll': {
2274
- label: string;
2275
- };
2276
- 'apoc.uuid.install': {
2277
- label: string;
2278
- };
2279
- 'apoc.uuid.list': {
2280
- label: string;
2281
- };
2282
- 'apoc.uuid.remove': {
2283
- label: string;
2284
- };
2285
- 'apoc.uuid.removeAll': {
2286
- label: string;
2287
- };
2288
- 'apoc.uuid.setup': {
2289
- label: string;
2290
- };
2291
- 'apoc.uuid.show': {
2292
- label: string;
2293
- };
2294
- 'apoc.warmup.run': {
2295
- label: string;
2296
- };
2297
- 'apoc.when': {
2298
- label: string;
2299
- };
2300
- 'apoc.xml.import': {
2301
- label: string;
2302
- };
2303
- 'db.awaitIndex': {
2304
- label: string;
2305
- };
2306
- 'db.awaitIndexes': {
2307
- label: string;
2308
- };
2309
- 'db.checkpoint': {
2310
- label: string;
2311
- };
2312
- 'db.clearQueryCaches': {
2313
- label: string;
2314
- };
2315
- 'db.constraints': {
2316
- label: string;
2317
- };
2318
- 'db.createIndex': {
2319
- label: string;
2320
- };
2321
- 'db.createLabel': {
2322
- label: string;
2323
- };
2324
- 'db.createNodeKey': {
2325
- label: string;
2326
- };
2327
- 'db.createProperty': {
2328
- label: string;
2329
- };
2330
- 'db.createRelationshipType': {
2331
- label: string;
2332
- };
2333
- 'db.createUniquePropertyConstraint': {
2334
- label: string;
2335
- };
2336
- 'db.index.fulltext.awaitEventuallyConsistentIndexRefresh': {
2337
- label: string;
2338
- };
2339
- 'db.index.fulltext.createNodeIndex': {
2340
- label: string;
2341
- };
2342
- 'db.index.fulltext.createRelationshipIndex': {
2343
- label: string;
2344
- };
2345
- 'db.index.fulltext.drop': {
2346
- label: string;
2347
- };
2348
- 'db.index.fulltext.listAvailableAnalyzers': {
2349
- label: string;
2350
- };
2351
- 'db.index.fulltext.queryNodes': {
2352
- label: string;
2353
- };
2354
- 'db.index.fulltext.queryRelationships': {
2355
- label: string;
2356
- };
2357
- 'db.indexDetails': {
2358
- label: string;
2359
- };
2360
- 'db.indexes': {
2361
- label: string;
2362
- };
2363
- 'db.info': {
2364
- label: string;
2365
- };
2366
- 'db.labels': {
2367
- label: string;
2368
- };
2369
- 'db.listLocks': {
2370
- label: string;
2371
- };
2372
- 'db.ping': {
2373
- label: string;
2374
- };
2375
- 'db.prepareForReplanning': {
2376
- label: string;
2377
- };
2378
- 'db.propertyKeys': {
2379
- label: string;
2380
- };
2381
- 'db.relationshipTypes': {
2382
- label: string;
2383
- };
2384
- 'db.resampleIndex': {
2385
- label: string;
2386
- };
2387
- 'db.resampleOutdatedIndexes': {
2388
- label: string;
2389
- };
2390
- 'db.schema.nodeTypeProperties': {
2391
- label: string;
2392
- };
2393
- 'db.schema.relTypeProperties': {
2394
- label: string;
2395
- };
2396
- 'db.schema.visualization': {
2397
- label: string;
2398
- };
2399
- 'db.schemaStatements': {
2400
- label: string;
2401
- };
2402
- 'db.stats.clear': {
2403
- label: string;
2404
- };
2405
- 'db.stats.collect': {
2406
- label: string;
2407
- };
2408
- 'db.stats.retrieve': {
2409
- label: string;
2410
- };
2411
- 'db.stats.retrieveAllAnonymized': {
2412
- label: string;
2413
- };
2414
- 'db.stats.status': {
2415
- label: string;
2416
- };
2417
- 'db.stats.stop': {
2418
- label: string;
2419
- };
2420
- 'dbms.cluster.overview': {
2421
- label: string;
2422
- };
2423
- 'dbms.cluster.protocols': {
2424
- label: string;
2425
- };
2426
- 'dbms.cluster.role': {
2427
- label: string;
2428
- };
2429
- 'dbms.cluster.routing.getRoutingTable': {
2430
- label: string;
2431
- };
2432
- 'dbms.components': {
2433
- label: string;
2434
- };
2435
- 'dbms.database.state': {
2436
- label: string;
2437
- };
2438
- 'dbms.functions': {
2439
- label: string;
2440
- };
2441
- 'dbms.info': {
2442
- label: string;
2443
- };
2444
- 'dbms.killConnection': {
2445
- label: string;
2446
- };
2447
- 'dbms.killConnections': {
2448
- label: string;
2449
- };
2450
- 'dbms.killQueries': {
2451
- label: string;
2452
- };
2453
- 'dbms.killQuery': {
2454
- label: string;
2455
- };
2456
- 'dbms.killTransaction': {
2457
- label: string;
2458
- };
2459
- 'dbms.killTransactions': {
2460
- label: string;
2461
- };
2462
- 'dbms.listActiveLocks': {
2463
- label: string;
2464
- };
2465
- 'dbms.listCapabilities': {
2466
- label: string;
2467
- };
2468
- 'dbms.listConfig': {
2469
- label: string;
2470
- };
2471
- 'dbms.listConnections': {
2472
- label: string;
2473
- };
2474
- 'dbms.listPools': {
2475
- label: string;
2476
- };
2477
- 'dbms.listQueries': {
2478
- label: string;
2479
- };
2480
- 'dbms.listTransactions': {
2481
- label: string;
2482
- };
2483
- 'dbms.procedures': {
2484
- label: string;
2485
- };
2486
- 'dbms.quarantineDatabase': {
2487
- label: string;
2488
- };
2489
- 'dbms.queryJmx': {
2490
- label: string;
2491
- };
2492
- 'dbms.routing.getRoutingTable': {
2493
- label: string;
2494
- };
2495
- 'dbms.scheduler.failedJobs': {
2496
- label: string;
2497
- };
2498
- 'dbms.scheduler.groups': {
2499
- label: string;
2500
- };
2501
- 'dbms.scheduler.jobs': {
2502
- label: string;
2503
- };
2504
- 'dbms.scheduler.profile': {
2505
- label: string;
2506
- };
2507
- 'dbms.security.activateUser': {
2508
- label: string;
2509
- };
2510
- 'dbms.security.addRoleToUser': {
2511
- label: string;
2512
- };
2513
- 'dbms.security.changePassword': {
2514
- label: string;
2515
- };
2516
- 'dbms.security.changeUserPassword': {
2517
- label: string;
2518
- };
2519
- 'dbms.security.clearAuthCache': {
2520
- label: string;
2521
- };
2522
- 'dbms.security.createRole': {
2523
- label: string;
2524
- };
2525
- 'dbms.security.createUser': {
2526
- label: string;
2527
- };
2528
- 'dbms.security.deleteRole': {
2529
- label: string;
2530
- };
2531
- 'dbms.security.deleteUser': {
2532
- label: string;
2533
- };
2534
- 'dbms.security.listRoles': {
2535
- label: string;
2536
- };
2537
- 'dbms.security.listRolesForUser': {
2538
- label: string;
2539
- };
2540
- 'dbms.security.listUsers': {
2541
- label: string;
2542
- };
2543
- 'dbms.security.listUsersForRole': {
2544
- label: string;
2545
- };
2546
- 'dbms.security.removeRoleFromUser': {
2547
- label: string;
2548
- };
2549
- 'dbms.security.suspendUser': {
2550
- label: string;
2551
- };
2552
- 'dbms.setConfigValue': {
2553
- label: string;
2554
- };
2555
- 'dbms.showCurrentUser': {
2556
- label: string;
2557
- };
2558
- 'dbms.upgrade': {
2559
- label: string;
2560
- };
2561
- 'dbms.upgradeStatus': {
2562
- label: string;
2563
- };
2564
- 'gds.allShortestPaths.delta.mutate': {
2565
- label: string;
2566
- };
2567
- 'gds.allShortestPaths.delta.mutate.estimate': {
2568
- label: string;
2569
- };
2570
- 'gds.allShortestPaths.delta.stats': {
2571
- label: string;
2572
- };
2573
- 'gds.allShortestPaths.delta.stats.estimate': {
2574
- label: string;
2575
- };
2576
- 'gds.allShortestPaths.delta.stream': {
2577
- label: string;
2578
- };
2579
- 'gds.allShortestPaths.delta.stream.estimate': {
2580
- label: string;
2581
- };
2582
- 'gds.allShortestPaths.delta.write': {
2583
- label: string;
2584
- };
2585
- 'gds.allShortestPaths.delta.write.estimate': {
2586
- label: string;
2587
- };
2588
- 'gds.allShortestPaths.dijkstra.mutate': {
2589
- label: string;
2590
- };
2591
- 'gds.allShortestPaths.dijkstra.mutate.estimate': {
2592
- label: string;
2593
- };
2594
- 'gds.allShortestPaths.dijkstra.stream': {
2595
- label: string;
2596
- };
2597
- 'gds.allShortestPaths.dijkstra.stream.estimate': {
2598
- label: string;
2599
- };
2600
- 'gds.allShortestPaths.dijkstra.write': {
2601
- label: string;
2602
- };
2603
- 'gds.allShortestPaths.dijkstra.write.estimate': {
2604
- label: string;
2605
- };
2606
- 'gds.alpha.allShortestPaths.stream': {
2607
- label: string;
2608
- };
2609
- 'gds.alpha.backup': {
2610
- label: string;
2611
- };
2612
- 'gds.alpha.closeness.harmonic.stream': {
2613
- label: string;
2614
- };
2615
- 'gds.alpha.closeness.harmonic.write': {
2616
- label: string;
2617
- };
2618
- 'gds.alpha.conductance.stream': {
2619
- label: string;
2620
- };
2621
- 'gds.alpha.config.defaults.list': {
2622
- label: string;
2623
- };
2624
- 'gds.alpha.config.defaults.set': {
2625
- label: string;
2626
- };
2627
- 'gds.alpha.config.limits.list': {
2628
- label: string;
2629
- };
2630
- 'gds.alpha.config.limits.set': {
2631
- label: string;
2632
- };
2633
- 'gds.alpha.create.cypherdb': {
2634
- label: string;
2635
- };
2636
- 'gds.alpha.drop.cypherdb': {
2637
- label: string;
2638
- };
2639
- 'gds.alpha.graph.graphProperty.drop': {
2640
- label: string;
2641
- };
2642
- 'gds.alpha.graph.graphProperty.stream': {
2643
- label: string;
2644
- };
2645
- 'gds.alpha.graph.nodeLabel.mutate': {
2646
- label: string;
2647
- };
2648
- 'gds.alpha.graph.nodeLabel.write': {
2649
- label: string;
2650
- };
2651
- 'gds.alpha.hits.mutate': {
2652
- label: string;
2653
- };
2654
- 'gds.alpha.hits.mutate.estimate': {
2655
- label: string;
2656
- };
2657
- 'gds.alpha.hits.stats': {
2658
- label: string;
2659
- };
2660
- 'gds.alpha.hits.stats.estimate': {
2661
- label: string;
2662
- };
2663
- 'gds.alpha.hits.stream': {
2664
- label: string;
2665
- };
2666
- 'gds.alpha.hits.stream.estimate': {
2667
- label: string;
2668
- };
2669
- 'gds.alpha.hits.write': {
2670
- label: string;
2671
- };
2672
- 'gds.alpha.hits.write.estimate': {
2673
- label: string;
2674
- };
2675
- 'gds.alpha.kSpanningTree.write': {
2676
- label: string;
2677
- };
2678
- 'gds.alpha.knn.filtered.mutate': {
2679
- label: string;
2680
- };
2681
- 'gds.alpha.knn.filtered.stats': {
2682
- label: string;
2683
- };
2684
- 'gds.alpha.knn.filtered.stream': {
2685
- label: string;
2686
- };
2687
- 'gds.alpha.knn.filtered.write': {
2688
- label: string;
2689
- };
2690
- 'gds.alpha.maxkcut.mutate': {
2691
- label: string;
2692
- };
2693
- 'gds.alpha.maxkcut.mutate.estimate': {
2694
- label: string;
2695
- };
2696
- 'gds.alpha.maxkcut.stream': {
2697
- label: string;
2698
- };
2699
- 'gds.alpha.maxkcut.stream.estimate': {
2700
- label: string;
2701
- };
2702
- 'gds.alpha.ml.splitRelationships.mutate': {
2703
- label: string;
2704
- };
2705
- 'gds.alpha.model.delete': {
2706
- label: string;
2707
- };
2708
- 'gds.alpha.model.load': {
2709
- label: string;
2710
- };
2711
- 'gds.alpha.model.publish': {
2712
- label: string;
2713
- };
2714
- 'gds.alpha.model.store': {
2715
- label: string;
2716
- };
2717
- 'gds.alpha.modularity.stats': {
2718
- label: string;
2719
- };
2720
- 'gds.alpha.modularity.stream': {
2721
- label: string;
2722
- };
2723
- 'gds.alpha.nodeSimilarity.filtered.mutate': {
2724
- label: string;
2725
- };
2726
- 'gds.alpha.nodeSimilarity.filtered.mutate.estimate': {
2727
- label: string;
2728
- };
2729
- 'gds.alpha.nodeSimilarity.filtered.stats': {
2730
- label: string;
2731
- };
2732
- 'gds.alpha.nodeSimilarity.filtered.stats.estimate': {
2733
- label: string;
2734
- };
2735
- 'gds.alpha.nodeSimilarity.filtered.stream': {
2736
- label: string;
2737
- };
2738
- 'gds.alpha.nodeSimilarity.filtered.stream.estimate': {
2739
- label: string;
2740
- };
2741
- 'gds.alpha.nodeSimilarity.filtered.write': {
2742
- label: string;
2743
- };
2744
- 'gds.alpha.nodeSimilarity.filtered.write.estimate': {
2745
- label: string;
2746
- };
2747
- 'gds.alpha.pipeline.linkPrediction.addMLP': {
2748
- label: string;
2749
- };
2750
- 'gds.alpha.pipeline.linkPrediction.addRandomForest': {
2751
- label: string;
2752
- };
2753
- 'gds.alpha.pipeline.linkPrediction.configureAutoTuning': {
2754
- label: string;
2755
- };
2756
- 'gds.alpha.pipeline.nodeClassification.addMLP': {
2757
- label: string;
2758
- };
2759
- 'gds.alpha.pipeline.nodeClassification.addRandomForest': {
2760
- label: string;
2761
- };
2762
- 'gds.alpha.pipeline.nodeClassification.configureAutoTuning': {
2763
- label: string;
2764
- };
2765
- 'gds.alpha.pipeline.nodeRegression.addLinearRegression': {
2766
- label: string;
2767
- };
2768
- 'gds.alpha.pipeline.nodeRegression.addNodeProperty': {
2769
- label: string;
2770
- };
2771
- 'gds.alpha.pipeline.nodeRegression.addRandomForest': {
2772
- label: string;
2773
- };
2774
- 'gds.alpha.pipeline.nodeRegression.configureAutoTuning': {
2775
- label: string;
2776
- };
2777
- 'gds.alpha.pipeline.nodeRegression.configureSplit': {
2778
- label: string;
2779
- };
2780
- 'gds.alpha.pipeline.nodeRegression.create': {
2781
- label: string;
2782
- };
2783
- 'gds.alpha.pipeline.nodeRegression.predict.mutate': {
2784
- label: string;
2785
- };
2786
- 'gds.alpha.pipeline.nodeRegression.predict.stream': {
2787
- label: string;
2788
- };
2789
- 'gds.alpha.pipeline.nodeRegression.selectFeatures': {
2790
- label: string;
2791
- };
2792
- 'gds.alpha.pipeline.nodeRegression.train': {
2793
- label: string;
2794
- };
2795
- 'gds.alpha.restore': {
2796
- label: string;
2797
- };
2798
- 'gds.alpha.scaleProperties.mutate': {
2799
- label: string;
2800
- };
2801
- 'gds.alpha.scaleProperties.stream': {
2802
- label: string;
2803
- };
2804
- 'gds.alpha.scc.stream': {
2805
- label: string;
2806
- };
2807
- 'gds.alpha.scc.write': {
2808
- label: string;
2809
- };
2810
- 'gds.alpha.sllpa.mutate': {
2811
- label: string;
2812
- };
2813
- 'gds.alpha.sllpa.mutate.estimate': {
2814
- label: string;
2815
- };
2816
- 'gds.alpha.sllpa.stats': {
2817
- label: string;
2818
- };
2819
- 'gds.alpha.sllpa.stats.estimate': {
2820
- label: string;
2821
- };
2822
- 'gds.alpha.sllpa.stream': {
2823
- label: string;
2824
- };
2825
- 'gds.alpha.sllpa.stream.estimate': {
2826
- label: string;
2827
- };
2828
- 'gds.alpha.sllpa.write': {
2829
- label: string;
2830
- };
2831
- 'gds.alpha.sllpa.write.estimate': {
2832
- label: string;
2833
- };
2834
- 'gds.alpha.systemMonitor': {
2835
- label: string;
2836
- };
2837
- 'gds.alpha.triangles': {
2838
- label: string;
2839
- };
2840
- 'gds.alpha.userLog': {
2841
- label: string;
2842
- };
2843
- 'gds.articleRank.mutate': {
2844
- label: string;
2845
- };
2846
- 'gds.articleRank.mutate.estimate': {
2847
- label: string;
2848
- };
2849
- 'gds.articleRank.stats': {
2850
- label: string;
2851
- };
2852
- 'gds.articleRank.stats.estimate': {
2853
- label: string;
2854
- };
2855
- 'gds.articleRank.stream': {
2856
- label: string;
2857
- };
2858
- 'gds.articleRank.stream.estimate': {
2859
- label: string;
2860
- };
2861
- 'gds.articleRank.write': {
2862
- label: string;
2863
- };
2864
- 'gds.articleRank.write.estimate': {
2865
- label: string;
2866
- };
2867
- 'gds.bellmanFord.mutate': {
2868
- label: string;
2869
- };
2870
- 'gds.bellmanFord.mutate.estimate': {
2871
- label: string;
2872
- };
2873
- 'gds.bellmanFord.stats': {
2874
- label: string;
2875
- };
2876
- 'gds.bellmanFord.stats.estimate': {
2877
- label: string;
2878
- };
2879
- 'gds.bellmanFord.stream': {
2880
- label: string;
2881
- };
2882
- 'gds.bellmanFord.stream.estimate': {
2883
- label: string;
2884
- };
2885
- 'gds.bellmanFord.write': {
2886
- label: string;
2887
- };
2888
- 'gds.bellmanFord.write.estimate': {
2889
- label: string;
2890
- };
2891
- 'gds.beta.closeness.mutate': {
2892
- label: string;
2893
- };
2894
- 'gds.beta.closeness.stats': {
2895
- label: string;
2896
- };
2897
- 'gds.beta.closeness.stream': {
2898
- label: string;
2899
- };
2900
- 'gds.beta.closeness.write': {
2901
- label: string;
2902
- };
2903
- 'gds.beta.collapsePath.mutate': {
2904
- label: string;
2905
- };
2906
- 'gds.beta.graph.export.csv': {
2907
- label: string;
2908
- };
2909
- 'gds.beta.graph.export.csv.estimate': {
2910
- label: string;
2911
- };
2912
- 'gds.beta.graph.generate': {
2913
- label: string;
2914
- };
2915
- 'gds.beta.graph.project.subgraph': {
2916
- label: string;
2917
- };
2918
- 'gds.beta.graph.relationships.stream': {
2919
- label: string;
2920
- };
2921
- 'gds.beta.graph.relationships.toUndirected': {
2922
- label: string;
2923
- };
2924
- 'gds.beta.graph.relationships.toUndirected.estimate': {
2925
- label: string;
2926
- };
2927
- 'gds.beta.graphSage.mutate': {
2928
- label: string;
2929
- };
2930
- 'gds.beta.graphSage.mutate.estimate': {
2931
- label: string;
2932
- };
2933
- 'gds.beta.graphSage.stream': {
2934
- label: string;
2935
- };
2936
- 'gds.beta.graphSage.stream.estimate': {
2937
- label: string;
2938
- };
2939
- 'gds.beta.graphSage.train': {
2940
- label: string;
2941
- };
2942
- 'gds.beta.graphSage.train.estimate': {
2943
- label: string;
2944
- };
2945
- 'gds.beta.graphSage.write': {
2946
- label: string;
2947
- };
2948
- 'gds.beta.graphSage.write.estimate': {
2949
- label: string;
2950
- };
2951
- 'gds.beta.hashgnn.mutate': {
2952
- label: string;
2953
- };
2954
- 'gds.beta.hashgnn.mutate.estimate': {
2955
- label: string;
2956
- };
2957
- 'gds.beta.hashgnn.stream': {
2958
- label: string;
2959
- };
2960
- 'gds.beta.hashgnn.stream.estimate': {
2961
- label: string;
2962
- };
2963
- 'gds.beta.influenceMaximization.celf.mutate': {
2964
- label: string;
2965
- };
2966
- 'gds.beta.influenceMaximization.celf.mutate.estimate': {
2967
- label: string;
2968
- };
2969
- 'gds.beta.influenceMaximization.celf.stats': {
2970
- label: string;
2971
- };
2972
- 'gds.beta.influenceMaximization.celf.stats.estimate': {
2973
- label: string;
2974
- };
2975
- 'gds.beta.influenceMaximization.celf.stream': {
2976
- label: string;
2977
- };
2978
- 'gds.beta.influenceMaximization.celf.stream.estimate': {
2979
- label: string;
2980
- };
2981
- 'gds.beta.influenceMaximization.celf.write': {
2982
- label: string;
2983
- };
2984
- 'gds.beta.influenceMaximization.celf.write.estimate': {
2985
- label: string;
2986
- };
2987
- 'gds.beta.k1coloring.mutate': {
2988
- label: string;
2989
- };
2990
- 'gds.beta.k1coloring.mutate.estimate': {
2991
- label: string;
2992
- };
2993
- 'gds.beta.k1coloring.stats': {
2994
- label: string;
2995
- };
2996
- 'gds.beta.k1coloring.stats.estimate': {
2997
- label: string;
2998
- };
2999
- 'gds.beta.k1coloring.stream': {
3000
- label: string;
3001
- };
3002
- 'gds.beta.k1coloring.stream.estimate': {
3003
- label: string;
3004
- };
3005
- 'gds.beta.k1coloring.write': {
3006
- label: string;
3007
- };
3008
- 'gds.beta.k1coloring.write.estimate': {
3009
- label: string;
3010
- };
3011
- 'gds.beta.kmeans.mutate': {
3012
- label: string;
3013
- };
3014
- 'gds.beta.kmeans.mutate.estimate': {
3015
- label: string;
3016
- };
3017
- 'gds.beta.kmeans.stats': {
3018
- label: string;
3019
- };
3020
- 'gds.beta.kmeans.stats.estimate': {
3021
- label: string;
3022
- };
3023
- 'gds.beta.kmeans.stream': {
3024
- label: string;
3025
- };
3026
- 'gds.beta.kmeans.stream.estimate': {
3027
- label: string;
3028
- };
3029
- 'gds.beta.kmeans.write': {
3030
- label: string;
3031
- };
3032
- 'gds.beta.kmeans.write.estimate': {
3033
- label: string;
3034
- };
3035
- 'gds.beta.leiden.mutate': {
3036
- label: string;
3037
- };
3038
- 'gds.beta.leiden.mutate.estimate': {
3039
- label: string;
3040
- };
3041
- 'gds.beta.leiden.stats': {
3042
- label: string;
3043
- };
3044
- 'gds.beta.leiden.stats.estimate': {
3045
- label: string;
3046
- };
3047
- 'gds.beta.leiden.stream': {
3048
- label: string;
3049
- };
3050
- 'gds.beta.leiden.stream.estimate': {
3051
- label: string;
3052
- };
3053
- 'gds.beta.leiden.write': {
3054
- label: string;
3055
- };
3056
- 'gds.beta.leiden.write.estimate': {
3057
- label: string;
3058
- };
3059
- 'gds.beta.listProgress': {
3060
- label: string;
3061
- };
3062
- 'gds.beta.model.drop': {
3063
- label: string;
3064
- };
3065
- 'gds.beta.model.exists': {
3066
- label: string;
3067
- };
3068
- 'gds.beta.model.list': {
3069
- label: string;
3070
- };
3071
- 'gds.beta.modularityOptimization.mutate': {
3072
- label: string;
3073
- };
3074
- 'gds.beta.modularityOptimization.mutate.estimate': {
3075
- label: string;
3076
- };
3077
- 'gds.beta.modularityOptimization.stream': {
3078
- label: string;
3079
- };
3080
- 'gds.beta.modularityOptimization.stream.estimate': {
3081
- label: string;
3082
- };
3083
- 'gds.beta.modularityOptimization.write': {
3084
- label: string;
3085
- };
3086
- 'gds.beta.modularityOptimization.write.estimate': {
3087
- label: string;
3088
- };
3089
- 'gds.beta.node2vec.mutate': {
3090
- label: string;
3091
- };
3092
- 'gds.beta.node2vec.mutate.estimate': {
3093
- label: string;
3094
- };
3095
- 'gds.beta.node2vec.stream': {
3096
- label: string;
3097
- };
3098
- 'gds.beta.node2vec.stream.estimate': {
3099
- label: string;
3100
- };
3101
- 'gds.beta.node2vec.write': {
3102
- label: string;
3103
- };
3104
- 'gds.beta.node2vec.write.estimate': {
3105
- label: string;
3106
- };
3107
- 'gds.beta.pipeline.drop': {
3108
- label: string;
3109
- };
3110
- 'gds.beta.pipeline.exists': {
3111
- label: string;
3112
- };
3113
- 'gds.beta.pipeline.linkPrediction.addFeature': {
3114
- label: string;
3115
- };
3116
- 'gds.beta.pipeline.linkPrediction.addLogisticRegression': {
3117
- label: string;
3118
- };
3119
- 'gds.beta.pipeline.linkPrediction.addNodeProperty': {
3120
- label: string;
3121
- };
3122
- 'gds.beta.pipeline.linkPrediction.addRandomForest': {
3123
- label: string;
3124
- };
3125
- 'gds.beta.pipeline.linkPrediction.configureSplit': {
3126
- label: string;
3127
- };
3128
- 'gds.beta.pipeline.linkPrediction.create': {
3129
- label: string;
3130
- };
3131
- 'gds.beta.pipeline.linkPrediction.predict.mutate': {
3132
- label: string;
3133
- };
3134
- 'gds.beta.pipeline.linkPrediction.predict.mutate.estimate': {
3135
- label: string;
3136
- };
3137
- 'gds.beta.pipeline.linkPrediction.predict.stream': {
3138
- label: string;
3139
- };
3140
- 'gds.beta.pipeline.linkPrediction.predict.stream.estimate': {
3141
- label: string;
3142
- };
3143
- 'gds.beta.pipeline.linkPrediction.train': {
3144
- label: string;
3145
- };
3146
- 'gds.beta.pipeline.linkPrediction.train.estimate': {
3147
- label: string;
3148
- };
3149
- 'gds.beta.pipeline.list': {
3150
- label: string;
3151
- };
3152
- 'gds.beta.pipeline.nodeClassification.addLogisticRegression': {
3153
- label: string;
3154
- };
3155
- 'gds.beta.pipeline.nodeClassification.addNodeProperty': {
3156
- label: string;
3157
- };
3158
- 'gds.beta.pipeline.nodeClassification.addRandomForest': {
3159
- label: string;
3160
- };
3161
- 'gds.beta.pipeline.nodeClassification.configureSplit': {
3162
- label: string;
3163
- };
3164
- 'gds.beta.pipeline.nodeClassification.create': {
3165
- label: string;
3166
- };
3167
- 'gds.beta.pipeline.nodeClassification.predict.mutate': {
3168
- label: string;
3169
- };
3170
- 'gds.beta.pipeline.nodeClassification.predict.mutate.estimate': {
3171
- label: string;
3172
- };
3173
- 'gds.beta.pipeline.nodeClassification.predict.stream': {
3174
- label: string;
3175
- };
3176
- 'gds.beta.pipeline.nodeClassification.predict.stream.estimate': {
3177
- label: string;
3178
- };
3179
- 'gds.beta.pipeline.nodeClassification.predict.write': {
3180
- label: string;
3181
- };
3182
- 'gds.beta.pipeline.nodeClassification.predict.write.estimate': {
3183
- label: string;
3184
- };
3185
- 'gds.beta.pipeline.nodeClassification.selectFeatures': {
3186
- label: string;
3187
- };
3188
- 'gds.beta.pipeline.nodeClassification.train': {
3189
- label: string;
3190
- };
3191
- 'gds.beta.pipeline.nodeClassification.train.estimate': {
3192
- label: string;
3193
- };
3194
- 'gds.beta.spanningTree.mutate': {
3195
- label: string;
3196
- };
3197
- 'gds.beta.spanningTree.mutate.estimate': {
3198
- label: string;
3199
- };
3200
- 'gds.beta.spanningTree.stats': {
3201
- label: string;
3202
- };
3203
- 'gds.beta.spanningTree.stats.estimate': {
3204
- label: string;
3205
- };
3206
- 'gds.beta.spanningTree.stream': {
3207
- label: string;
3208
- };
3209
- 'gds.beta.spanningTree.stream.estimate': {
3210
- label: string;
3211
- };
3212
- 'gds.beta.spanningTree.write': {
3213
- label: string;
3214
- };
3215
- 'gds.beta.spanningTree.write.estimate': {
3216
- label: string;
3217
- };
3218
- 'gds.beta.steinerTree.mutate': {
3219
- label: string;
3220
- };
3221
- 'gds.beta.steinerTree.stats': {
3222
- label: string;
3223
- };
3224
- 'gds.beta.steinerTree.stream': {
3225
- label: string;
3226
- };
3227
- 'gds.beta.steinerTree.write': {
3228
- label: string;
3229
- };
3230
- 'gds.betweenness.mutate': {
3231
- label: string;
3232
- };
3233
- 'gds.betweenness.mutate.estimate': {
3234
- label: string;
3235
- };
3236
- 'gds.betweenness.stats': {
3237
- label: string;
3238
- };
3239
- 'gds.betweenness.stats.estimate': {
3240
- label: string;
3241
- };
3242
- 'gds.betweenness.stream': {
3243
- label: string;
3244
- };
3245
- 'gds.betweenness.stream.estimate': {
3246
- label: string;
3247
- };
3248
- 'gds.betweenness.write': {
3249
- label: string;
3250
- };
3251
- 'gds.betweenness.write.estimate': {
3252
- label: string;
3253
- };
3254
- 'gds.bfs.mutate': {
3255
- label: string;
3256
- };
3257
- 'gds.bfs.mutate.estimate': {
3258
- label: string;
3259
- };
3260
- 'gds.bfs.stats': {
3261
- label: string;
3262
- };
3263
- 'gds.bfs.stats.estimate': {
3264
- label: string;
3265
- };
3266
- 'gds.bfs.stream': {
3267
- label: string;
3268
- };
3269
- 'gds.bfs.stream.estimate': {
3270
- label: string;
3271
- };
3272
- 'gds.debug.arrow': {
3273
- label: string;
3274
- };
3275
- 'gds.debug.sysInfo': {
3276
- label: string;
3277
- };
3278
- 'gds.degree.mutate': {
3279
- label: string;
3280
- };
3281
- 'gds.degree.mutate.estimate': {
3282
- label: string;
3283
- };
3284
- 'gds.degree.stats': {
3285
- label: string;
3286
- };
3287
- 'gds.degree.stats.estimate': {
3288
- label: string;
3289
- };
3290
- 'gds.degree.stream': {
3291
- label: string;
3292
- };
3293
- 'gds.degree.stream.estimate': {
3294
- label: string;
3295
- };
3296
- 'gds.degree.write': {
3297
- label: string;
3298
- };
3299
- 'gds.degree.write.estimate': {
3300
- label: string;
3301
- };
3302
- 'gds.dfs.mutate': {
3303
- label: string;
3304
- };
3305
- 'gds.dfs.mutate.estimate': {
3306
- label: string;
3307
- };
3308
- 'gds.dfs.stream': {
3309
- label: string;
3310
- };
3311
- 'gds.dfs.stream.estimate': {
3312
- label: string;
3313
- };
3314
- 'gds.eigenvector.mutate': {
3315
- label: string;
3316
- };
3317
- 'gds.eigenvector.mutate.estimate': {
3318
- label: string;
3319
- };
3320
- 'gds.eigenvector.stats': {
3321
- label: string;
3322
- };
3323
- 'gds.eigenvector.stats.estimate': {
3324
- label: string;
3325
- };
3326
- 'gds.eigenvector.stream': {
3327
- label: string;
3328
- };
3329
- 'gds.eigenvector.stream.estimate': {
3330
- label: string;
3331
- };
3332
- 'gds.eigenvector.write': {
3333
- label: string;
3334
- };
3335
- 'gds.eigenvector.write.estimate': {
3336
- label: string;
3337
- };
3338
- 'gds.fastRP.mutate': {
3339
- label: string;
3340
- };
3341
- 'gds.fastRP.mutate.estimate': {
3342
- label: string;
3343
- };
3344
- 'gds.fastRP.stats': {
3345
- label: string;
3346
- };
3347
- 'gds.fastRP.stats.estimate': {
3348
- label: string;
3349
- };
3350
- 'gds.fastRP.stream': {
3351
- label: string;
3352
- };
3353
- 'gds.fastRP.stream.estimate': {
3354
- label: string;
3355
- };
3356
- 'gds.fastRP.write': {
3357
- label: string;
3358
- };
3359
- 'gds.fastRP.write.estimate': {
3360
- label: string;
3361
- };
3362
- 'gds.graph.deleteRelationships': {
3363
- label: string;
3364
- };
3365
- 'gds.graph.drop': {
3366
- label: string;
3367
- };
3368
- 'gds.graph.exists': {
3369
- label: string;
3370
- };
3371
- 'gds.graph.export': {
3372
- label: string;
3373
- };
3374
- 'gds.graph.list': {
3375
- label: string;
3376
- };
3377
- 'gds.graph.nodeProperties.drop': {
3378
- label: string;
3379
- };
3380
- 'gds.graph.nodeProperties.stream': {
3381
- label: string;
3382
- };
3383
- 'gds.graph.nodeProperties.write': {
3384
- label: string;
3385
- };
3386
- 'gds.graph.nodeProperty.stream': {
3387
- label: string;
3388
- };
3389
- 'gds.graph.project': {
3390
- label: string;
3391
- };
3392
- 'gds.graph.project.cypher': {
3393
- label: string;
3394
- };
3395
- 'gds.graph.project.cypher.estimate': {
3396
- label: string;
3397
- };
3398
- 'gds.graph.project.estimate': {
3399
- label: string;
3400
- };
3401
- 'gds.graph.relationship.write': {
3402
- label: string;
3403
- };
3404
- 'gds.graph.relationshipProperties.stream': {
3405
- label: string;
3406
- };
3407
- 'gds.graph.relationshipProperties.write': {
3408
- label: string;
3409
- };
3410
- 'gds.graph.relationshipProperty.stream': {
3411
- label: string;
3412
- };
3413
- 'gds.graph.relationships.drop': {
3414
- label: string;
3415
- };
3416
- 'gds.graph.removeNodeProperties': {
3417
- label: string;
3418
- };
3419
- 'gds.graph.sample.cnarw': {
3420
- label: string;
3421
- };
3422
- 'gds.graph.sample.cnarw.estimate': {
3423
- label: string;
3424
- };
3425
- 'gds.graph.sample.rwr': {
3426
- label: string;
3427
- };
3428
- 'gds.graph.streamNodeProperties': {
3429
- label: string;
3430
- };
3431
- 'gds.graph.streamNodeProperty': {
3432
- label: string;
3433
- };
3434
- 'gds.graph.streamRelationshipProperties': {
3435
- label: string;
3436
- };
3437
- 'gds.graph.streamRelationshipProperty': {
3438
- label: string;
3439
- };
3440
- 'gds.graph.writeNodeProperties': {
3441
- label: string;
3442
- };
3443
- 'gds.graph.writeRelationship': {
3444
- label: string;
3445
- };
3446
- 'gds.kcore.mutate': {
3447
- label: string;
3448
- };
3449
- 'gds.kcore.mutate.estimate': {
3450
- label: string;
3451
- };
3452
- 'gds.kcore.stats': {
3453
- label: string;
3454
- };
3455
- 'gds.kcore.stats.estimate': {
3456
- label: string;
3457
- };
3458
- 'gds.kcore.stream': {
3459
- label: string;
3460
- };
3461
- 'gds.kcore.stream.estimate': {
3462
- label: string;
3463
- };
3464
- 'gds.kcore.write': {
3465
- label: string;
3466
- };
3467
- 'gds.kcore.write.estimate': {
3468
- label: string;
3469
- };
3470
- 'gds.knn.mutate': {
3471
- label: string;
3472
- };
3473
- 'gds.knn.mutate.estimate': {
3474
- label: string;
3475
- };
3476
- 'gds.knn.stats': {
3477
- label: string;
3478
- };
3479
- 'gds.knn.stats.estimate': {
3480
- label: string;
3481
- };
3482
- 'gds.knn.stream': {
3483
- label: string;
3484
- };
3485
- 'gds.knn.stream.estimate': {
3486
- label: string;
3487
- };
3488
- 'gds.knn.write': {
3489
- label: string;
3490
- };
3491
- 'gds.knn.write.estimate': {
3492
- label: string;
3493
- };
3494
- 'gds.labelPropagation.mutate': {
3495
- label: string;
3496
- };
3497
- 'gds.labelPropagation.mutate.estimate': {
3498
- label: string;
3499
- };
3500
- 'gds.labelPropagation.stats': {
3501
- label: string;
3502
- };
3503
- 'gds.labelPropagation.stats.estimate': {
3504
- label: string;
3505
- };
3506
- 'gds.labelPropagation.stream': {
3507
- label: string;
3508
- };
3509
- 'gds.labelPropagation.stream.estimate': {
3510
- label: string;
3511
- };
3512
- 'gds.labelPropagation.write': {
3513
- label: string;
3514
- };
3515
- 'gds.labelPropagation.write.estimate': {
3516
- label: string;
3517
- };
3518
- 'gds.list': {
3519
- label: string;
3520
- };
3521
- 'gds.localClusteringCoefficient.mutate': {
3522
- label: string;
3523
- };
3524
- 'gds.localClusteringCoefficient.mutate.estimate': {
3525
- label: string;
3526
- };
3527
- 'gds.localClusteringCoefficient.stats': {
3528
- label: string;
3529
- };
3530
- 'gds.localClusteringCoefficient.stats.estimate': {
3531
- label: string;
3532
- };
3533
- 'gds.localClusteringCoefficient.stream': {
3534
- label: string;
3535
- };
3536
- 'gds.localClusteringCoefficient.stream.estimate': {
3537
- label: string;
3538
- };
3539
- 'gds.localClusteringCoefficient.write': {
3540
- label: string;
3541
- };
3542
- 'gds.localClusteringCoefficient.write.estimate': {
3543
- label: string;
3544
- };
3545
- 'gds.louvain.mutate': {
3546
- label: string;
3547
- };
3548
- 'gds.louvain.mutate.estimate': {
3549
- label: string;
3550
- };
3551
- 'gds.louvain.stats': {
3552
- label: string;
3553
- };
3554
- 'gds.louvain.stats.estimate': {
3555
- label: string;
3556
- };
3557
- 'gds.louvain.stream': {
3558
- label: string;
3559
- };
3560
- 'gds.louvain.stream.estimate': {
3561
- label: string;
3562
- };
3563
- 'gds.louvain.write': {
3564
- label: string;
3565
- };
3566
- 'gds.louvain.write.estimate': {
3567
- label: string;
3568
- };
3569
- 'gds.nodeSimilarity.mutate': {
3570
- label: string;
3571
- };
3572
- 'gds.nodeSimilarity.mutate.estimate': {
3573
- label: string;
3574
- };
3575
- 'gds.nodeSimilarity.stats': {
3576
- label: string;
3577
- };
3578
- 'gds.nodeSimilarity.stats.estimate': {
3579
- label: string;
3580
- };
3581
- 'gds.nodeSimilarity.stream': {
3582
- label: string;
3583
- };
3584
- 'gds.nodeSimilarity.stream.estimate': {
3585
- label: string;
3586
- };
3587
- 'gds.nodeSimilarity.write': {
3588
- label: string;
3589
- };
3590
- 'gds.nodeSimilarity.write.estimate': {
3591
- label: string;
3592
- };
3593
- 'gds.pageRank.mutate': {
3594
- label: string;
3595
- };
3596
- 'gds.pageRank.mutate.estimate': {
3597
- label: string;
3598
- };
3599
- 'gds.pageRank.stats': {
3600
- label: string;
3601
- };
3602
- 'gds.pageRank.stats.estimate': {
3603
- label: string;
3604
- };
3605
- 'gds.pageRank.stream': {
3606
- label: string;
3607
- };
3608
- 'gds.pageRank.stream.estimate': {
3609
- label: string;
3610
- };
3611
- 'gds.pageRank.write': {
3612
- label: string;
3613
- };
3614
- 'gds.pageRank.write.estimate': {
3615
- label: string;
3616
- };
3617
- 'gds.randomWalk.stats': {
3618
- label: string;
3619
- };
3620
- 'gds.randomWalk.stats.estimate': {
3621
- label: string;
3622
- };
3623
- 'gds.randomWalk.stream': {
3624
- label: string;
3625
- };
3626
- 'gds.randomWalk.stream.estimate': {
3627
- label: string;
3628
- };
3629
- 'gds.scaleProperties.mutate': {
3630
- label: string;
3631
- };
3632
- 'gds.scaleProperties.mutate.estimate': {
3633
- label: string;
3634
- };
3635
- 'gds.scaleProperties.stats': {
3636
- label: string;
3637
- };
3638
- 'gds.scaleProperties.stats.estimate': {
3639
- label: string;
3640
- };
3641
- 'gds.scaleProperties.stream': {
3642
- label: string;
3643
- };
3644
- 'gds.scaleProperties.stream.estimate': {
3645
- label: string;
3646
- };
3647
- 'gds.scaleProperties.write': {
3648
- label: string;
3649
- };
3650
- 'gds.scaleProperties.write.estimate': {
3651
- label: string;
3652
- };
3653
- 'gds.shortestPath.astar.mutate': {
3654
- label: string;
3655
- };
3656
- 'gds.shortestPath.astar.mutate.estimate': {
3657
- label: string;
3658
- };
3659
- 'gds.shortestPath.astar.stream': {
3660
- label: string;
3661
- };
3662
- 'gds.shortestPath.astar.stream.estimate': {
3663
- label: string;
3664
- };
3665
- 'gds.shortestPath.astar.write': {
3666
- label: string;
3667
- };
3668
- 'gds.shortestPath.astar.write.estimate': {
3669
- label: string;
3670
- };
3671
- 'gds.shortestPath.dijkstra.mutate': {
3672
- label: string;
3673
- };
3674
- 'gds.shortestPath.dijkstra.mutate.estimate': {
3675
- label: string;
3676
- };
3677
- 'gds.shortestPath.dijkstra.stream': {
3678
- label: string;
3679
- };
3680
- 'gds.shortestPath.dijkstra.stream.estimate': {
3681
- label: string;
3682
- };
3683
- 'gds.shortestPath.dijkstra.write': {
3684
- label: string;
3685
- };
3686
- 'gds.shortestPath.dijkstra.write.estimate': {
3687
- label: string;
3688
- };
3689
- 'gds.shortestPath.yens.mutate': {
3690
- label: string;
3691
- };
3692
- 'gds.shortestPath.yens.mutate.estimate': {
3693
- label: string;
3694
- };
3695
- 'gds.shortestPath.yens.stream': {
3696
- label: string;
3697
- };
3698
- 'gds.shortestPath.yens.stream.estimate': {
3699
- label: string;
3700
- };
3701
- 'gds.shortestPath.yens.write': {
3702
- label: string;
3703
- };
3704
- 'gds.shortestPath.yens.write.estimate': {
3705
- label: string;
3706
- };
3707
- 'gds.triangleCount.mutate': {
3708
- label: string;
3709
- };
3710
- 'gds.triangleCount.mutate.estimate': {
3711
- label: string;
3712
- };
3713
- 'gds.triangleCount.stats': {
3714
- label: string;
3715
- };
3716
- 'gds.triangleCount.stats.estimate': {
3717
- label: string;
3718
- };
3719
- 'gds.triangleCount.stream': {
3720
- label: string;
3721
- };
3722
- 'gds.triangleCount.stream.estimate': {
3723
- label: string;
3724
- };
3725
- 'gds.triangleCount.write': {
3726
- label: string;
3727
- };
3728
- 'gds.triangleCount.write.estimate': {
3729
- label: string;
3730
- };
3731
- 'gds.wcc.mutate': {
3732
- label: string;
3733
- };
3734
- 'gds.wcc.mutate.estimate': {
3735
- label: string;
3736
- };
3737
- 'gds.wcc.stats': {
3738
- label: string;
3739
- };
3740
- 'gds.wcc.stats.estimate': {
3741
- label: string;
3742
- };
3743
- 'gds.wcc.stream': {
3744
- label: string;
3745
- };
3746
- 'gds.wcc.stream.estimate': {
3747
- label: string;
3748
- };
3749
- 'gds.wcc.write': {
3750
- label: string;
3751
- };
3752
- 'gds.wcc.write.estimate': {
3753
- label: string;
3754
- };
3755
- 'jwt.security.requestAccess': {
3756
- label: string;
3757
- };
3758
- 'tx.getMetaData': {
3759
- label: string;
3760
- };
3761
- 'tx.setMetaData': {
3762
- label: string;
3763
- };
3764
- };
3765
- labels: string[];
3766
- relationshipTypes: string[];
3767
- propertyKeys: string[];
3768
- parameters: {
3769
- param1: {
3770
- property: string;
3771
- speed: number;
3772
- };
3773
- favColor: string;
3774
- myParam: number;
3775
- };
3776
- databaseNames: string[];
3777
- aliasNames: string[];
3778
- };
3779
- export declare const largeQuery = "\nCREATE (TheMatrix:Movie {title:'The Matrix', released:1999, tagline:'Welcome to the Real World'})\nCREATE (Keanu:Person {name:'Keanu Reeves', born:1964})\nCREATE (Carrie:Person {name:'Carrie-Anne Moss', born:1967})\nCREATE (Laurence:Person {name:'Laurence Fishburne', born:1961})\nCREATE (Hugo:Person {name:'Hugo Weaving', born:1960})\nCREATE (LillyW:Person {name:'Lilly Wachowski', born:1967})\nCREATE (LanaW:Person {name:'Lana Wachowski', born:1965})\nCREATE (JoelS:Person {name:'Joel Silver', born:1952})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Neo']}]->(TheMatrix),\n(Carrie)-[:ACTED_IN {roles:['Trinity']}]->(TheMatrix),\n(Laurence)-[:ACTED_IN {roles:['Morpheus']}]->(TheMatrix),\n(Hugo)-[:ACTED_IN {roles:['Agent Smith']}]->(TheMatrix),\n(LillyW)-[:DIRECTED]->(TheMatrix),\n(LanaW)-[:DIRECTED]->(TheMatrix),\n(JoelS)-[:PRODUCED]->(TheMatrix)\n\nCREATE (Emil:Person {name:\"Emil Eifrem\", born:1978})\nCREATE (Emil)-[:ACTED_IN {roles:[\"Emil\"]}]->(TheMatrix)\n\nCREATE (TheMatrixReloaded:Movie {title:'The Matrix Reloaded', released:2003, tagline:'Free your mind'})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Neo']}]->(TheMatrixReloaded),\n(Carrie)-[:ACTED_IN {roles:['Trinity']}]->(TheMatrixReloaded),\n(Laurence)-[:ACTED_IN {roles:['Morpheus']}]->(TheMatrixReloaded),\n(Hugo)-[:ACTED_IN {roles:['Agent Smith']}]->(TheMatrixReloaded),\n(LillyW)-[:DIRECTED]->(TheMatrixReloaded),\n(LanaW)-[:DIRECTED]->(TheMatrixReloaded),\n(JoelS)-[:PRODUCED]->(TheMatrixReloaded)\n\nCREATE (TheMatrixRevolutions:Movie {title:'The Matrix Revolutions', released:2003, tagline:'Everything that has a beginning has an end'})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Neo']}]->(TheMatrixRevolutions),\n(Carrie)-[:ACTED_IN {roles:['Trinity']}]->(TheMatrixRevolutions),\n(Laurence)-[:ACTED_IN {roles:['Morpheus']}]->(TheMatrixRevolutions),\n(Hugo)-[:ACTED_IN {roles:['Agent Smith']}]->(TheMatrixRevolutions),\n(LillyW)-[:DIRECTED]->(TheMatrixRevolutions),\n(LanaW)-[:DIRECTED]->(TheMatrixRevolutions),\n(JoelS)-[:PRODUCED]->(TheMatrixRevolutions)\n\nCREATE (TheDevilsAdvocate:Movie {title:\"The Devil's Advocate\", released:1997, tagline:'Evil has its winning ways'})\nCREATE (Charlize:Person {name:'Charlize Theron', born:1975})\nCREATE (Al:Person {name:'Al Pacino', born:1940})\nCREATE (Taylor:Person {name:'Taylor Hackford', born:1944})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Kevin Lomax']}]->(TheDevilsAdvocate),\n(Charlize)-[:ACTED_IN {roles:['Mary Ann Lomax']}]->(TheDevilsAdvocate),\n(Al)-[:ACTED_IN {roles:['John Milton']}]->(TheDevilsAdvocate),\n(Taylor)-[:DIRECTED]->(TheDevilsAdvocate)\n\nCREATE (AFewGoodMen:Movie {title:\"A Few Good Men\", released:1992, tagline:\"In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.\"})\nCREATE (TomC:Person {name:'Tom Cruise', born:1962})\nCREATE (JackN:Person {name:'Jack Nicholson', born:1937})\nCREATE (DemiM:Person {name:'Demi Moore', born:1962})\nCREATE (KevinB:Person {name:'Kevin Bacon', born:1958})\nCREATE (KieferS:Person {name:'Kiefer Sutherland', born:1966})\nCREATE (NoahW:Person {name:'Noah Wyle', born:1971})\nCREATE (CubaG:Person {name:'Cuba Gooding Jr.', born:1968})\nCREATE (KevinP:Person {name:'Kevin Pollak', born:1957})\nCREATE (JTW:Person {name:'J.T. Walsh', born:1943})\nCREATE (JamesM:Person {name:'James Marshall', born:1967})\nCREATE (ChristopherG:Person {name:'Christopher Guest', born:1948})\nCREATE (RobR:Person {name:'Rob Reiner', born:1947})\nCREATE (AaronS:Person {name:'Aaron Sorkin', born:1961})\nCREATE\n(TomC)-[:ACTED_IN {roles:['Lt. Daniel Kaffee']}]->(AFewGoodMen),\n(JackN)-[:ACTED_IN {roles:['Col. Nathan R. Jessup']}]->(AFewGoodMen),\n(DemiM)-[:ACTED_IN {roles:['Lt. Cdr. JoAnne Galloway']}]->(AFewGoodMen),\n(KevinB)-[:ACTED_IN {roles:['Capt. Jack Ross']}]->(AFewGoodMen),\n(KieferS)-[:ACTED_IN {roles:['Lt. Jonathan Kendrick']}]->(AFewGoodMen),\n(NoahW)-[:ACTED_IN {roles:['Cpl. Jeffrey Barnes']}]->(AFewGoodMen),\n(CubaG)-[:ACTED_IN {roles:['Cpl. Carl Hammaker']}]->(AFewGoodMen),\n(KevinP)-[:ACTED_IN {roles:['Lt. Sam Weinberg']}]->(AFewGoodMen),\n(JTW)-[:ACTED_IN {roles:['Lt. Col. Matthew Andrew Markinson']}]->(AFewGoodMen),\n(JamesM)-[:ACTED_IN {roles:['Pfc. Louden Downey']}]->(AFewGoodMen),\n(ChristopherG)-[:ACTED_IN {roles:['Dr. Stone']}]->(AFewGoodMen),\n(AaronS)-[:ACTED_IN {roles:['Man in Bar']}]->(AFewGoodMen),\n(RobR)-[:DIRECTED]->(AFewGoodMen),\n(AaronS)-[:WROTE]->(AFewGoodMen)\n\nCREATE (TopGun:Movie {title:\"Top Gun\", released:1986, tagline:'I feel the need, the need for speed.'})\nCREATE (KellyM:Person {name:'Kelly McGillis', born:1957})\nCREATE (ValK:Person {name:'Val Kilmer', born:1959})\nCREATE (AnthonyE:Person {name:'Anthony Edwards', born:1962})\nCREATE (TomS:Person {name:'Tom Skerritt', born:1933})\nCREATE (MegR:Person {name:'Meg Ryan', born:1961})\nCREATE (TonyS:Person {name:'Tony Scott', born:1944})\nCREATE (JimC:Person {name:'Jim Cash', born:1941})\nCREATE\n(TomC)-[:ACTED_IN {roles:['Maverick']}]->(TopGun),\n(KellyM)-[:ACTED_IN {roles:['Charlie']}]->(TopGun),\n(ValK)-[:ACTED_IN {roles:['Iceman']}]->(TopGun),\n(AnthonyE)-[:ACTED_IN {roles:['Goose']}]->(TopGun),\n(TomS)-[:ACTED_IN {roles:['Viper']}]->(TopGun),\n(MegR)-[:ACTED_IN {roles:['Carole']}]->(TopGun),\n(TonyS)-[:DIRECTED]->(TopGun),\n(JimC)-[:WROTE]->(TopGun)\n\nCREATE (JerryMaguire:Movie {title:'Jerry Maguire', released:2000, tagline:'The rest of his life begins now.'})\nCREATE (ReneeZ:Person {name:'Renee Zellweger', born:1969})\nCREATE (KellyP:Person {name:'Kelly Preston', born:1962})\nCREATE (JerryO:Person {name:\"Jerry O'Connell\", born:1974})\nCREATE (JayM:Person {name:'Jay Mohr', born:1970})\nCREATE (BonnieH:Person {name:'Bonnie Hunt', born:1961})\nCREATE (ReginaK:Person {name:'Regina King', born:1971})\nCREATE (JonathanL:Person {name:'Jonathan Lipnicki', born:1996})\nCREATE (CameronC:Person {name:'Cameron Crowe', born:1957})\nCREATE\n(TomC)-[:ACTED_IN {roles:['Jerry Maguire']}]->(JerryMaguire),\n(CubaG)-[:ACTED_IN {roles:['Rod Tidwell']}]->(JerryMaguire),\n(ReneeZ)-[:ACTED_IN {roles:['Dorothy Boyd']}]->(JerryMaguire),\n(KellyP)-[:ACTED_IN {roles:['Avery Bishop']}]->(JerryMaguire),\n(JerryO)-[:ACTED_IN {roles:['Frank Cushman']}]->(JerryMaguire),\n(JayM)-[:ACTED_IN {roles:['Bob Sugar']}]->(JerryMaguire),\n(BonnieH)-[:ACTED_IN {roles:['Laurel Boyd']}]->(JerryMaguire),\n(ReginaK)-[:ACTED_IN {roles:['Marcee Tidwell']}]->(JerryMaguire),\n(JonathanL)-[:ACTED_IN {roles:['Ray Boyd']}]->(JerryMaguire),\n(CameronC)-[:DIRECTED]->(JerryMaguire),\n(CameronC)-[:PRODUCED]->(JerryMaguire),\n(CameronC)-[:WROTE]->(JerryMaguire)\n\nCREATE (StandByMe:Movie {title:\"Stand By Me\", released:1986, tagline:\"For some, it's the last real taste of innocence, and the first real taste of life. But for everyone, it's the time that memories are made of.\"})\nCREATE (RiverP:Person {name:'River Phoenix', born:1970})\nCREATE (CoreyF:Person {name:'Corey Feldman', born:1971})\nCREATE (WilW:Person {name:'Wil Wheaton', born:1972})\nCREATE (JohnC:Person {name:'John Cusack', born:1966})\nCREATE (MarshallB:Person {name:'Marshall Bell', born:1942})\nCREATE\n(WilW)-[:ACTED_IN {roles:['Gordie Lachance']}]->(StandByMe),\n(RiverP)-[:ACTED_IN {roles:['Chris Chambers']}]->(StandByMe),\n(JerryO)-[:ACTED_IN {roles:['Vern Tessio']}]->(StandByMe),\n(CoreyF)-[:ACTED_IN {roles:['Teddy Duchamp']}]->(StandByMe),\n(JohnC)-[:ACTED_IN {roles:['Denny Lachance']}]->(StandByMe),\n(KieferS)-[:ACTED_IN {roles:['Ace Merrill']}]->(StandByMe),\n(MarshallB)-[:ACTED_IN {roles:['Mr. Lachance']}]->(StandByMe),\n(RobR)-[:DIRECTED]->(StandByMe)\n\nCREATE (AsGoodAsItGets:Movie {title:'As Good as It Gets', released:1997, tagline:'A comedy from the heart that goes for the throat.'})\nCREATE (HelenH:Person {name:'Helen Hunt', born:1963})\nCREATE (GregK:Person {name:'Greg Kinnear', born:1963})\nCREATE (JamesB:Person {name:'James L. Brooks', born:1940})\nCREATE\n(JackN)-[:ACTED_IN {roles:['Melvin Udall']}]->(AsGoodAsItGets),\n(HelenH)-[:ACTED_IN {roles:['Carol Connelly']}]->(AsGoodAsItGets),\n(GregK)-[:ACTED_IN {roles:['Simon Bishop']}]->(AsGoodAsItGets),\n(CubaG)-[:ACTED_IN {roles:['Frank Sachs']}]->(AsGoodAsItGets),\n(JamesB)-[:DIRECTED]->(AsGoodAsItGets)\n\nCREATE (WhatDreamsMayCome:Movie {title:'What Dreams May Come', released:1998, tagline:'After life there is more. The end is just the beginning.'})\nCREATE (AnnabellaS:Person {name:'Annabella Sciorra', born:1960})\nCREATE (MaxS:Person {name:'Max von Sydow', born:1929})\nCREATE (WernerH:Person {name:'Werner Herzog', born:1942})\nCREATE (Robin:Person {name:'Robin Williams', born:1951})\nCREATE (VincentW:Person {name:'Vincent Ward', born:1956})\nCREATE\n(Robin)-[:ACTED_IN {roles:['Chris Nielsen']}]->(WhatDreamsMayCome),\n(CubaG)-[:ACTED_IN {roles:['Albert Lewis']}]->(WhatDreamsMayCome),\n(AnnabellaS)-[:ACTED_IN {roles:['Annie Collins-Nielsen']}]->(WhatDreamsMayCome),\n(MaxS)-[:ACTED_IN {roles:['The Tracker']}]->(WhatDreamsMayCome),\n(WernerH)-[:ACTED_IN {roles:['The Face']}]->(WhatDreamsMayCome),\n(VincentW)-[:DIRECTED]->(WhatDreamsMayCome)\n\nCREATE (SnowFallingonCedars:Movie {title:'Snow Falling on Cedars', released:1999, tagline:'First loves last. Forever.'})\nCREATE (EthanH:Person {name:'Ethan Hawke', born:1970})\nCREATE (RickY:Person {name:'Rick Yune', born:1971})\nCREATE (JamesC:Person {name:'James Cromwell', born:1940})\nCREATE (ScottH:Person {name:'Scott Hicks', born:1953})\nCREATE\n(EthanH)-[:ACTED_IN {roles:['Ishmael Chambers']}]->(SnowFallingonCedars),\n(RickY)-[:ACTED_IN {roles:['Kazuo Miyamoto']}]->(SnowFallingonCedars),\n(MaxS)-[:ACTED_IN {roles:['Nels Gudmundsson']}]->(SnowFallingonCedars),\n(JamesC)-[:ACTED_IN {roles:['Judge Fielding']}]->(SnowFallingonCedars),\n(ScottH)-[:DIRECTED]->(SnowFallingonCedars)\n\nCREATE (YouveGotMail:Movie {title:\"You've Got Mail\", released:1998, tagline:'At odds in life... in love on-line.'})\nCREATE (ParkerP:Person {name:'Parker Posey', born:1968})\nCREATE (DaveC:Person {name:'Dave Chappelle', born:1973})\nCREATE (SteveZ:Person {name:'Steve Zahn', born:1967})\nCREATE (TomH:Person {name:'Tom Hanks', born:1956})\nCREATE (NoraE:Person {name:'Nora Ephron', born:1941})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Joe Fox']}]->(YouveGotMail),\n(MegR)-[:ACTED_IN {roles:['Kathleen Kelly']}]->(YouveGotMail),\n(GregK)-[:ACTED_IN {roles:['Frank Navasky']}]->(YouveGotMail),\n(ParkerP)-[:ACTED_IN {roles:['Patricia Eden']}]->(YouveGotMail),\n(DaveC)-[:ACTED_IN {roles:['Kevin Jackson']}]->(YouveGotMail),\n(SteveZ)-[:ACTED_IN {roles:['George Pappas']}]->(YouveGotMail),\n(NoraE)-[:DIRECTED]->(YouveGotMail)\n\nCREATE (SleeplessInSeattle:Movie {title:'Sleepless in Seattle', released:1993, tagline:'What if someone you never met, someone you never saw, someone you never knew was the only someone for you?'})\nCREATE (RitaW:Person {name:'Rita Wilson', born:1956})\nCREATE (BillPull:Person {name:'Bill Pullman', born:1953})\nCREATE (VictorG:Person {name:'Victor Garber', born:1949})\nCREATE (RosieO:Person {name:\"Rosie O'Donnell\", born:1962})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Sam Baldwin']}]->(SleeplessInSeattle),\n(MegR)-[:ACTED_IN {roles:['Annie Reed']}]->(SleeplessInSeattle),\n(RitaW)-[:ACTED_IN {roles:['Suzy']}]->(SleeplessInSeattle),\n(BillPull)-[:ACTED_IN {roles:['Walter']}]->(SleeplessInSeattle),\n(VictorG)-[:ACTED_IN {roles:['Greg']}]->(SleeplessInSeattle),\n(RosieO)-[:ACTED_IN {roles:['Becky']}]->(SleeplessInSeattle),\n(NoraE)-[:DIRECTED]->(SleeplessInSeattle)\n\nCREATE (JoeVersustheVolcano:Movie {title:'Joe Versus the Volcano', released:1990, tagline:'A story of love, lava and burning desire.'})\nCREATE (JohnS:Person {name:'John Patrick Stanley', born:1950})\nCREATE (Nathan:Person {name:'Nathan Lane', born:1956})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Joe Banks']}]->(JoeVersustheVolcano),\n(MegR)-[:ACTED_IN {roles:['DeDe', 'Angelica Graynamore', 'Patricia Graynamore']}]->(JoeVersustheVolcano),\n(Nathan)-[:ACTED_IN {roles:['Baw']}]->(JoeVersustheVolcano),\n(JohnS)-[:DIRECTED]->(JoeVersustheVolcano)\n\nCREATE (WhenHarryMetSally:Movie {title:'When Harry Met Sally', released:1998, tagline:'Can two friends sleep together and still love each other in the morning?'})\nCREATE (BillyC:Person {name:'Billy Crystal', born:1948})\nCREATE (CarrieF:Person {name:'Carrie Fisher', born:1956})\nCREATE (BrunoK:Person {name:'Bruno Kirby', born:1949})\nCREATE\n(BillyC)-[:ACTED_IN {roles:['Harry Burns']}]->(WhenHarryMetSally),\n(MegR)-[:ACTED_IN {roles:['Sally Albright']}]->(WhenHarryMetSally),\n(CarrieF)-[:ACTED_IN {roles:['Marie']}]->(WhenHarryMetSally),\n(BrunoK)-[:ACTED_IN {roles:['Jess']}]->(WhenHarryMetSally),\n(RobR)-[:DIRECTED]->(WhenHarryMetSally),\n(RobR)-[:PRODUCED]->(WhenHarryMetSally),\n(NoraE)-[:PRODUCED]->(WhenHarryMetSally),\n(NoraE)-[:WROTE]->(WhenHarryMetSally)\n\nCREATE (ThatThingYouDo:Movie {title:'That Thing You Do', released:1996, tagline:'In every life there comes a time when that thing you dream becomes that thing you do'})\nCREATE (LivT:Person {name:'Liv Tyler', born:1977})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Mr. White']}]->(ThatThingYouDo),\n(LivT)-[:ACTED_IN {roles:['Faye Dolan']}]->(ThatThingYouDo),\n(Charlize)-[:ACTED_IN {roles:['Tina']}]->(ThatThingYouDo),\n(TomH)-[:DIRECTED]->(ThatThingYouDo)\n\nCREATE (TheReplacements:Movie {title:'The Replacements', released:2000, tagline:'Pain heals, Chicks dig scars... Glory lasts forever'})\nCREATE (Brooke:Person {name:'Brooke Langton', born:1970})\nCREATE (Gene:Person {name:'Gene Hackman', born:1930})\nCREATE (Orlando:Person {name:'Orlando Jones', born:1968})\nCREATE (Howard:Person {name:'Howard Deutch', born:1950})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Shane Falco']}]->(TheReplacements),\n(Brooke)-[:ACTED_IN {roles:['Annabelle Farrell']}]->(TheReplacements),\n(Gene)-[:ACTED_IN {roles:['Jimmy McGinty']}]->(TheReplacements),\n(Orlando)-[:ACTED_IN {roles:['Clifford Franklin']}]->(TheReplacements),\n(Howard)-[:DIRECTED]->(TheReplacements)\n\nCREATE (RescueDawn:Movie {title:'RescueDawn', released:2006, tagline:\"Based on the extraordinary true story of one man's fight for freedom\"})\nCREATE (ChristianB:Person {name:'Christian Bale', born:1974})\nCREATE (ZachG:Person {name:'Zach Grenier', born:1954})\nCREATE\n(MarshallB)-[:ACTED_IN {roles:['Admiral']}]->(RescueDawn),\n(ChristianB)-[:ACTED_IN {roles:['Dieter Dengler']}]->(RescueDawn),\n(ZachG)-[:ACTED_IN {roles:['Squad Leader']}]->(RescueDawn),\n(SteveZ)-[:ACTED_IN {roles:['Duane']}]->(RescueDawn),\n(WernerH)-[:DIRECTED]->(RescueDawn)\n\nCREATE (TheBirdcage:Movie {title:'The Birdcage', released:1996, tagline:'Come as you are'})\nCREATE (MikeN:Person {name:'Mike Nichols', born:1931})\nCREATE\n(Robin)-[:ACTED_IN {roles:['Armand Goldman']}]->(TheBirdcage),\n(Nathan)-[:ACTED_IN {roles:['Albert Goldman']}]->(TheBirdcage),\n(Gene)-[:ACTED_IN {roles:['Sen. Kevin Keeley']}]->(TheBirdcage),\n(MikeN)-[:DIRECTED]->(TheBirdcage)\n\nCREATE (Unforgiven:Movie {title:'Unforgiven', released:1992, tagline:\"It's a hell of a thing, killing a man\"})\nCREATE (RichardH:Person {name:'Richard Harris', born:1930})\nCREATE (ClintE:Person {name:'Clint Eastwood', born:1930})\nCREATE\n(RichardH)-[:ACTED_IN {roles:['English Bob']}]->(Unforgiven),\n(ClintE)-[:ACTED_IN {roles:['Bill Munny']}]->(Unforgiven),\n(Gene)-[:ACTED_IN {roles:['Little Bill Daggett']}]->(Unforgiven),\n(ClintE)-[:DIRECTED]->(Unforgiven)\n\nCREATE (JohnnyMnemonic:Movie {title:'Johnny Mnemonic', released:1995, tagline:'The hottest data on earth. In the coolest head in town'})\nCREATE (Takeshi:Person {name:'Takeshi Kitano', born:1947})\nCREATE (Dina:Person {name:'Dina Meyer', born:1968})\nCREATE (IceT:Person {name:'Ice-T', born:1958})\nCREATE (RobertL:Person {name:'Robert Longo', born:1953})\nCREATE\n(Keanu)-[:ACTED_IN {roles:['Johnny Mnemonic']}]->(JohnnyMnemonic),\n(Takeshi)-[:ACTED_IN {roles:['Takahashi']}]->(JohnnyMnemonic),\n(Dina)-[:ACTED_IN {roles:['Jane']}]->(JohnnyMnemonic),\n(IceT)-[:ACTED_IN {roles:['J-Bone']}]->(JohnnyMnemonic),\n(RobertL)-[:DIRECTED]->(JohnnyMnemonic)\n\nCREATE (CloudAtlas:Movie {title:'Cloud Atlas', released:2012, tagline:'Everything is connected'})\nCREATE (HalleB:Person {name:'Halle Berry', born:1966})\nCREATE (JimB:Person {name:'Jim Broadbent', born:1949})\nCREATE (TomT:Person {name:'Tom Tykwer', born:1965})\nCREATE (DavidMitchell:Person {name:'David Mitchell', born:1969})\nCREATE (StefanArndt:Person {name:'Stefan Arndt', born:1961})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Zachry', 'Dr. Henry Goose', 'Isaac Sachs', 'Dermot Hoggins']}]->(CloudAtlas),\n(Hugo)-[:ACTED_IN {roles:['Bill Smoke', 'Haskell Moore', 'Tadeusz Kesselring', 'Nurse Noakes', 'Boardman Mephi', 'Old Georgie']}]->(CloudAtlas),\n(HalleB)-[:ACTED_IN {roles:['Luisa Rey', 'Jocasta Ayrs', 'Ovid', 'Meronym']}]->(CloudAtlas),\n(JimB)-[:ACTED_IN {roles:['Vyvyan Ayrs', 'Captain Molyneux', 'Timothy Cavendish']}]->(CloudAtlas),\n(TomT)-[:DIRECTED]->(CloudAtlas),\n(LillyW)-[:DIRECTED]->(CloudAtlas),\n(LanaW)-[:DIRECTED]->(CloudAtlas),\n(DavidMitchell)-[:WROTE]->(CloudAtlas),\n(StefanArndt)-[:PRODUCED]->(CloudAtlas)\n\nCREATE (TheDaVinciCode:Movie {title:'The Da Vinci Code', released:2006, tagline:'Break The Codes'})\nCREATE (IanM:Person {name:'Ian McKellen', born:1939})\nCREATE (AudreyT:Person {name:'Audrey Tautou', born:1976})\nCREATE (PaulB:Person {name:'Paul Bettany', born:1971})\nCREATE (RonH:Person {name:'Ron Howard', born:1954})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Dr. Robert Langdon']}]->(TheDaVinciCode),\n(IanM)-[:ACTED_IN {roles:['Sir Leight Teabing']}]->(TheDaVinciCode),\n(AudreyT)-[:ACTED_IN {roles:['Sophie Neveu']}]->(TheDaVinciCode),\n(PaulB)-[:ACTED_IN {roles:['Silas']}]->(TheDaVinciCode),\n(RonH)-[:DIRECTED]->(TheDaVinciCode)\n\nCREATE (VforVendetta:Movie {title:'V for Vendetta', released:2006, tagline:'Freedom! Forever!'})\nCREATE (NatalieP:Person {name:'Natalie Portman', born:1981})\nCREATE (StephenR:Person {name:'Stephen Rea', born:1946})\nCREATE (JohnH:Person {name:'John Hurt', born:1940})\nCREATE (BenM:Person {name: 'Ben Miles', born:1967})\nCREATE\n(Hugo)-[:ACTED_IN {roles:['V']}]->(VforVendetta),\n(NatalieP)-[:ACTED_IN {roles:['Evey Hammond']}]->(VforVendetta),\n(StephenR)-[:ACTED_IN {roles:['Eric Finch']}]->(VforVendetta),\n(JohnH)-[:ACTED_IN {roles:['High Chancellor Adam Sutler']}]->(VforVendetta),\n(BenM)-[:ACTED_IN {roles:['Dascomb']}]->(VforVendetta),\n(JamesM)-[:DIRECTED]->(VforVendetta),\n(LillyW)-[:PRODUCED]->(VforVendetta),\n(LanaW)-[:PRODUCED]->(VforVendetta),\n(JoelS)-[:PRODUCED]->(VforVendetta),\n(LillyW)-[:WROTE]->(VforVendetta),\n(LanaW)-[:WROTE]->(VforVendetta)\n\nCREATE (SpeedRacer:Movie {title:'Speed Racer', released:2008, tagline:'Speed has no limits'})\nCREATE (EmileH:Person {name:'Emile Hirsch', born:1985})\nCREATE (JohnG:Person {name:'John Goodman', born:1960})\nCREATE (SusanS:Person {name:'Susan Sarandon', born:1946})\nCREATE (MatthewF:Person {name:'Matthew Fox', born:1966})\nCREATE (ChristinaR:Person {name:'Christina Ricci', born:1980})\nCREATE (Rain:Person {name:'Rain', born:1982})\nCREATE\n(EmileH)-[:ACTED_IN {roles:['Speed Racer']}]->(SpeedRacer),\n(JohnG)-[:ACTED_IN {roles:['Pops']}]->(SpeedRacer),\n(SusanS)-[:ACTED_IN {roles:['Mom']}]->(SpeedRacer),\n(MatthewF)-[:ACTED_IN {roles:['Racer X']}]->(SpeedRacer),\n(ChristinaR)-[:ACTED_IN {roles:['Trixie']}]->(SpeedRacer),\n(Rain)-[:ACTED_IN {roles:['Taejo Togokahn']}]->(SpeedRacer),\n(BenM)-[:ACTED_IN {roles:['Cass Jones']}]->(SpeedRacer),\n(LillyW)-[:DIRECTED]->(SpeedRacer),\n(LanaW)-[:DIRECTED]->(SpeedRacer),\n(LillyW)-[:WROTE]->(SpeedRacer),\n(LanaW)-[:WROTE]->(SpeedRacer),\n(JoelS)-[:PRODUCED]->(SpeedRacer)\n\nCREATE (NinjaAssassin:Movie {title:'Ninja Assassin', released:2009, tagline:'Prepare to enter a secret world of assassins'})\nCREATE (NaomieH:Person {name:'Naomie Harris'})\nCREATE\n(Rain)-[:ACTED_IN {roles:['Raizo']}]->(NinjaAssassin),\n(NaomieH)-[:ACTED_IN {roles:['Mika Coretti']}]->(NinjaAssassin),\n(RickY)-[:ACTED_IN {roles:['Takeshi']}]->(NinjaAssassin),\n(BenM)-[:ACTED_IN {roles:['Ryan Maslow']}]->(NinjaAssassin),\n(JamesM)-[:DIRECTED]->(NinjaAssassin),\n(LillyW)-[:PRODUCED]->(NinjaAssassin),\n(LanaW)-[:PRODUCED]->(NinjaAssassin),\n(JoelS)-[:PRODUCED]->(NinjaAssassin)\n\nCREATE (TheGreenMile:Movie {title:'The Green Mile', released:1999, tagline:\"Walk a mile you'll never forget.\"})\nCREATE (MichaelD:Person {name:'Michael Clarke Duncan', born:1957})\nCREATE (DavidM:Person {name:'David Morse', born:1953})\nCREATE (SamR:Person {name:'Sam Rockwell', born:1968})\nCREATE (GaryS:Person {name:'Gary Sinise', born:1955})\nCREATE (PatriciaC:Person {name:'Patricia Clarkson', born:1959})\nCREATE (FrankD:Person {name:'Frank Darabont', born:1959})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Paul Edgecomb']}]->(TheGreenMile),\n(MichaelD)-[:ACTED_IN {roles:['John Coffey']}]->(TheGreenMile),\n(DavidM)-[:ACTED_IN {roles:['Brutus \"Brutal\" Howell']}]->(TheGreenMile),\n(BonnieH)-[:ACTED_IN {roles:['Jan Edgecomb']}]->(TheGreenMile),\n(JamesC)-[:ACTED_IN {roles:['Warden Hal Moores']}]->(TheGreenMile),\n(SamR)-[:ACTED_IN {roles:['\"Wild Bill\" Wharton']}]->(TheGreenMile),\n(GaryS)-[:ACTED_IN {roles:['Burt Hammersmith']}]->(TheGreenMile),\n(PatriciaC)-[:ACTED_IN {roles:['Melinda Moores']}]->(TheGreenMile),\n(FrankD)-[:DIRECTED]->(TheGreenMile)\n\nCREATE (FrostNixon:Movie {title:'Frost/Nixon', released:2008, tagline:'400 million people were waiting for the truth.'})\nCREATE (FrankL:Person {name:'Frank Langella', born:1938})\nCREATE (MichaelS:Person {name:'Michael Sheen', born:1969})\nCREATE (OliverP:Person {name:'Oliver Platt', born:1960})\nCREATE\n(FrankL)-[:ACTED_IN {roles:['Richard Nixon']}]->(FrostNixon),\n(MichaelS)-[:ACTED_IN {roles:['David Frost']}]->(FrostNixon),\n(KevinB)-[:ACTED_IN {roles:['Jack Brennan']}]->(FrostNixon),\n(OliverP)-[:ACTED_IN {roles:['Bob Zelnick']}]->(FrostNixon),\n(SamR)-[:ACTED_IN {roles:['James Reston, Jr.']}]->(FrostNixon),\n(RonH)-[:DIRECTED]->(FrostNixon)\n\nCREATE (Hoffa:Movie {title:'Hoffa', released:1992, tagline:\"He didn't want law. He wanted justice.\"})\nCREATE (DannyD:Person {name:'Danny DeVito', born:1944})\nCREATE (JohnR:Person {name:'John C. Reilly', born:1965})\nCREATE\n(JackN)-[:ACTED_IN {roles:['Hoffa']}]->(Hoffa),\n(DannyD)-[:ACTED_IN {roles:['Robert \"Bobby\" Ciaro']}]->(Hoffa),\n(JTW)-[:ACTED_IN {roles:['Frank Fitzsimmons']}]->(Hoffa),\n(JohnR)-[:ACTED_IN {roles:['Peter \"Pete\" Connelly']}]->(Hoffa),\n(DannyD)-[:DIRECTED]->(Hoffa)\n\nCREATE (Apollo13:Movie {title:'Apollo 13', released:1995, tagline:'Houston, we have a problem.'})\nCREATE (EdH:Person {name:'Ed Harris', born:1950})\nCREATE (BillPax:Person {name:'Bill Paxton', born:1955})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Jim Lovell']}]->(Apollo13),\n(KevinB)-[:ACTED_IN {roles:['Jack Swigert']}]->(Apollo13),\n(EdH)-[:ACTED_IN {roles:['Gene Kranz']}]->(Apollo13),\n(BillPax)-[:ACTED_IN {roles:['Fred Haise']}]->(Apollo13),\n(GaryS)-[:ACTED_IN {roles:['Ken Mattingly']}]->(Apollo13),\n(RonH)-[:DIRECTED]->(Apollo13)\n\nCREATE (Twister:Movie {title:'Twister', released:1996, tagline:\"Don't Breathe. Don't Look Back.\"})\nCREATE (PhilipH:Person {name:'Philip Seymour Hoffman', born:1967})\nCREATE (JanB:Person {name:'Jan de Bont', born:1943})\nCREATE\n(BillPax)-[:ACTED_IN {roles:['Bill Harding']}]->(Twister),\n(HelenH)-[:ACTED_IN {roles:['Dr. Jo Harding']}]->(Twister),\n(ZachG)-[:ACTED_IN {roles:['Eddie']}]->(Twister),\n(PhilipH)-[:ACTED_IN {roles:['Dustin \"Dusty\" Davis']}]->(Twister),\n(JanB)-[:DIRECTED]->(Twister)\n\nCREATE (CastAway:Movie {title:'Cast Away', released:2000, tagline:'At the edge of the world, his journey begins.'})\nCREATE (RobertZ:Person {name:'Robert Zemeckis', born:1951})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Chuck Noland']}]->(CastAway),\n(HelenH)-[:ACTED_IN {roles:['Kelly Frears']}]->(CastAway),\n(RobertZ)-[:DIRECTED]->(CastAway)\n\nCREATE (OneFlewOvertheCuckoosNest:Movie {title:\"One Flew Over the Cuckoo's Nest\", released:1975, tagline:\"If he's crazy, what does that make you?\"})\nCREATE (MilosF:Person {name:'Milos Forman', born:1932})\nCREATE\n(JackN)-[:ACTED_IN {roles:['Randle McMurphy']}]->(OneFlewOvertheCuckoosNest),\n(DannyD)-[:ACTED_IN {roles:['Martini']}]->(OneFlewOvertheCuckoosNest),\n(MilosF)-[:DIRECTED]->(OneFlewOvertheCuckoosNest)\n\nCREATE (SomethingsGottaGive:Movie {title:\"Something's Gotta Give\", released:2003})\nCREATE (DianeK:Person {name:'Diane Keaton', born:1946})\nCREATE (NancyM:Person {name:'Nancy Meyers', born:1949})\nCREATE\n(JackN)-[:ACTED_IN {roles:['Harry Sanborn']}]->(SomethingsGottaGive),\n(DianeK)-[:ACTED_IN {roles:['Erica Barry']}]->(SomethingsGottaGive),\n(Keanu)-[:ACTED_IN {roles:['Julian Mercer']}]->(SomethingsGottaGive),\n(NancyM)-[:DIRECTED]->(SomethingsGottaGive),\n(NancyM)-[:PRODUCED]->(SomethingsGottaGive),\n(NancyM)-[:WROTE]->(SomethingsGottaGive)\n\nCREATE (BicentennialMan:Movie {title:'Bicentennial Man', released:1999, tagline:\"One robot's 200 year journey to become an ordinary man.\"})\nCREATE (ChrisC:Person {name:'Chris Columbus', born:1958})\nCREATE\n(Robin)-[:ACTED_IN {roles:['Andrew Marin']}]->(BicentennialMan),\n(OliverP)-[:ACTED_IN {roles:['Rupert Burns']}]->(BicentennialMan),\n(ChrisC)-[:DIRECTED]->(BicentennialMan)\n\nCREATE (CharlieWilsonsWar:Movie {title:\"Charlie Wilson's War\", released:2007, tagline:\"A stiff drink. A little mascara. A lot of nerve. Who said they couldn't bring down the Soviet empire.\"})\nCREATE (JuliaR:Person {name:'Julia Roberts', born:1967})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Rep. Charlie Wilson']}]->(CharlieWilsonsWar),\n(JuliaR)-[:ACTED_IN {roles:['Joanne Herring']}]->(CharlieWilsonsWar),\n(PhilipH)-[:ACTED_IN {roles:['Gust Avrakotos']}]->(CharlieWilsonsWar),\n(MikeN)-[:DIRECTED]->(CharlieWilsonsWar)\n\nCREATE (ThePolarExpress:Movie {title:'The Polar Express', released:2004, tagline:'This Holiday Season... Believe'})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Hero Boy', 'Father', 'Conductor', 'Hobo', 'Scrooge', 'Santa Claus']}]->(ThePolarExpress),\n(RobertZ)-[:DIRECTED]->(ThePolarExpress)\n\nCREATE (ALeagueofTheirOwn:Movie {title:'A League of Their Own', released:1992, tagline:'Once in a lifetime you get a chance to do something different.'})\nCREATE (Madonna:Person {name:'Madonna', born:1954})\nCREATE (GeenaD:Person {name:'Geena Davis', born:1956})\nCREATE (LoriP:Person {name:'Lori Petty', born:1963})\nCREATE (PennyM:Person {name:'Penny Marshall', born:1943})\nCREATE\n(TomH)-[:ACTED_IN {roles:['Jimmy Dugan']}]->(ALeagueofTheirOwn),\n(GeenaD)-[:ACTED_IN {roles:['Dottie Hinson']}]->(ALeagueofTheirOwn),\n(LoriP)-[:ACTED_IN {roles:['Kit Keller']}]->(ALeagueofTheirOwn),\n(RosieO)-[:ACTED_IN {roles:['Doris Murphy']}]->(ALeagueofTheirOwn),\n(Madonna)-[:ACTED_IN {roles:['\"All the Way\" Mae Mordabito']}]->(ALeagueofTheirOwn),\n(BillPax)-[:ACTED_IN {roles:['Bob Hinson']}]->(ALeagueofTheirOwn),\n(PennyM)-[:DIRECTED]->(ALeagueofTheirOwn)\n\nCREATE (PaulBlythe:Person {name:'Paul Blythe'})\nCREATE (AngelaScope:Person {name:'Angela Scope'})\nCREATE (JessicaThompson:Person {name:'Jessica Thompson'})\nCREATE (JamesThompson:Person {name:'James Thompson'})\n\nCREATE\n(JamesThompson)-[:FOLLOWS]->(JessicaThompson),\n(AngelaScope)-[:FOLLOWS]->(JessicaThompson),\n(PaulBlythe)-[:FOLLOWS]->(AngelaScope)\n\nCREATE\n(JessicaThompson)-[:REVIEWED {summary:'An amazing journey', rating:95}]->(CloudAtlas),\n(JessicaThompson)-[:REVIEWED {summary:'Silly, but fun', rating:65}]->(TheReplacements),\n(JamesThompson)-[:REVIEWED {summary:'The coolest football movie ever', rating:100}]->(TheReplacements),\n(AngelaScope)-[:REVIEWED {summary:'Pretty funny at times', rating:62}]->(TheReplacements),\n(JessicaThompson)-[:REVIEWED {summary:'Dark, but compelling', rating:85}]->(Unforgiven),\n(JessicaThompson)-[:REVIEWED {summary:\"Slapstick redeemed only by the Robin Williams and Gene Hackman's stellar performances\", rating:45}]->(TheBirdcage),\n(JessicaThompson)-[:REVIEWED {summary:'A solid romp', rating:68}]->(TheDaVinciCode),\n(JamesThompson)-[:REVIEWED {summary:'Fun, but a little far fetched', rating:65}]->(TheDaVinciCode),\n(JessicaThompson)-[:REVIEWED {summary:'You had me at Jerry', rating:92}]->(JerryMaguire)\n\nWITH TomH as a\nMATCH (a)-[:ACTED_IN]->(m)<-[:DIRECTED]-(d) RETURN a,m,d LIMIT 10;";