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