Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
264 changes: 264 additions & 0 deletions apoc_mappings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
{
"apoc.algo.aStar": "algo.astar",
"apoc.algo.aStarConfig": null,
"apoc.algo.allSimplePaths": "algo.all_simple_paths",
"apoc.algo.cover": "algo.cover",
"apoc.algo.dijkstra": null,

"apoc.coll.elements": null,
"apoc.coll.split": "collections.split",
"apoc.coll.zipToRows": null,
"apoc.coll.avg": "collections.avg",
"apoc.coll.combinations": null,
"apoc.coll.contains": "collections.contains",
"apoc.coll.containsAll": "collections.contains_all",
"apoc.coll.containsAllSorted": null,
"apoc.coll.containsDuplicates": null,
"apoc.coll.containsSorted": "collections.contains_sorted",
"apoc.coll.different": null,
"apoc.coll.disjunction": null,
"apoc.coll.dropDuplicateNeighbors": null,
"apoc.coll.duplicates": null,
"apoc.coll.duplicatesWithCount": null,
"apoc.coll.fill": null,
"apoc.coll.flatten": null,
"apoc.coll.frequencies": null,
"apoc.coll.frequenciesAsMap": null,
"apoc.coll.indexOf": null,
"apoc.coll.insert": null,
"apoc.coll.insertAll": null,
"apoc.coll.intersection": "collections.intersection",
"apoc.coll.isEqualCollection": null,
"apoc.coll.max": "collections.max",
"apoc.coll.min": "collections.min",
"apoc.coll.occurrences": null,
"apoc.coll.pairs": "collections.pairs",
"apoc.coll.pairsMin": null,
"apoc.coll.pairWithOffset": null,
"apoc.coll.partition": "collections.partition",
"apoc.coll.randomItem": null,
"apoc.coll.randomItems": null,
"apoc.coll.remove": null,
"apoc.coll.removeAll": "collections.remove_all",
"apoc.coll.runningTotal": null,
"apoc.coll.set": null,
"apoc.coll.shuffle": null,
"apoc.coll.sort": "collections.sort",
"apoc.coll.sortMaps": null,
"apoc.coll.sortMulti": null,
"apoc.coll.sortNodes": null,
"apoc.coll.sortText": null,
"apoc.coll.stdev": null,
"apoc.coll.subtract": null,
"apoc.coll.sum": "collections.sum",
"apoc.coll.sumLongs": "collections.sum_longs",
"apoc.coll.toSet": "collections.to_set",
"apoc.coll.union": "collections.union",
"apoc.coll.unionAll": "collections.union_all",
"apoc.coll.zip": null,


"apoc.create.addLabels": null,
"apoc.create.clonePathToVirtual": null,
"apoc.create.clonePathsToVirtual": null,
"apoc.create.node": "create.node",
"apoc.create.nodes": "create.nodes",
"apoc.create.relationship": "create.relationship",
"apoc.create.removeLabels": "create.remove_labels",
"apoc.create.removeProperties": "create.remove_properties",
"apoc.create.removeRelProperties": "create.remove_rel_properties",
"apoc.create.setLabels": null,
"apoc.create.setProperties": "create.set_properties",
"apoc.create.setProperty": "create.set_property",
"apoc.create.setRelProperties": "create.set_rel_properties",
"apoc.create.setRelProperty": "create.set_rel_property",
"apoc.create.uuids": null,
"apoc.create.vNode": null,
"apoc.create.vNodes": null,
"apoc.create.vRelationship": null,
"apoc.create.virtualPath": null,
"apoc.create.uuid": "uuid_generator.get",
"apoc.create.uuidBase64": null,
"apoc.create.uuidBase64ToHex": null,
"apoc.create.uuidHexToBase64": null,
"apoc.create.virtual.fromNode": null,

"apoc.date.add": "date.add",
"apoc.date.convert": null,
"apoc.date.convertFormat": null,
"apoc.date.currentTimestamp": null,
"apoc.date.field": null,
"apoc.date.fields": null,
"apoc.date.format": "date.format",
"apoc.date.fromISO8601": null,
"apoc.date.parse": "date.parse",
"apoc.date.systemTimezone": null,
"apoc.date.toISO8601": null,
"apoc.date.toYears": null,

"apoc.do.case": "do.case",
"apoc.do.when": "do.when",

"apoc.export.arrow.all": null,
"apoc.export.arrow.graph": null,
"apoc.export.arrow.query": null,
"apoc.export.arrow.stream.all": null,
"apoc.export.arrow.stream.graph": null,
"apoc.export.arrow.stream.query": null,
"apoc.export.csv.all": null,
"apoc.export.csv.data": null,
"apoc.export.csv.graph": "export_util.csv_graph",
"apoc.export.csv.query": "export_util.csv_query",
"apoc.export.cypher.all": "export_util.cypher_all",
"apoc.export.cypher.data": null,
"apoc.export.cypher.graph": null,
"apoc.export.cypher.query": null,
"apoc.export.cypher.schema": null,
"apoc.export.graphml.all": "export_util.graphml",
"apoc.export.graphml.data": null,
"apoc.export.graphml.graph": null,
"apoc.export.graphml.query": null,
"apoc.export.json.all": "export_util.json",
"apoc.export.json.data": null,
"apoc.export.json.graph": "export_util.json_graph",
"apoc.export.json.query": null,

"apoc.import.csv": null,
"apoc.import.graphml": "import_util.graphml",
"apoc.import.json": "import_util.json",
"apoc.import.xml": null,

"apoc.label.exists": "label.exists",

"apoc.map.clean": null,
"apoc.map.flatten": "map.flatten",
"apoc.map.fromLists": "map.from_lists",
"apoc.map.fromNodes": "map.from_nodes",
"apoc.map.fromPairs": "map.from_pairs",
"apoc.map.fromValues": "map.from_values",
"apoc.map.get": null,
"apoc.map.groupBy": null,
"apoc.map.groupByMulti": null,
"apoc.map.merge": "map.merge",
"apoc.map.mergeList": null,
"apoc.map.mget": null,
"apoc.map.removeKey": "map.remove_key",
"apoc.map.removeKeys": "map.remove_keys",
"apoc.map.setEntry": null,
"apoc.map.setKey": "map.set_key",
"apoc.map.setLists": null,
"apoc.map.setPairs": null,
"apoc.map.setValues": null,
"apoc.map.sortedProperties": null,
"apoc.map.submap": null,
"apoc.map.unflatten": null,
"apoc.map.updateTree": null,
"apoc.map.values": null,

"apoc.merge.node": "merge.node",
"apoc.merge.node.eager": null,
"apoc.merge.nodeWithStats": null,
"apoc.merge.nodeWithStats.eager": null,
"apoc.merge.relationship": "merge.relationship",
"apoc.merge.relationship.eager": null,
"apoc.merge.relationshipWithStats": null,
"apoc.merge.relationshipWithStats.eager": null,

"apoc.meta.data": null,
"apoc.meta.data.of": null,
"apoc.meta.graph": null,
"apoc.meta.graph.of": null,
"apoc.meta.graphSample": null,
"apoc.meta.nodeTypeProperties": null,
"apoc.meta.relTypeProperties": null,
"apoc.meta.schema": "meta_util.schema",
"apoc.meta.stats": "meta.stats_online",
"apoc.meta.subGraph": null,
"apoc.meta.cypher.isType": null,
"apoc.meta.cypher.type": null,
"apoc.meta.cypher.types": null,
"apoc.meta.nodes.count": null,

"apoc.neighbors.athop": "neighbors.at_hop",
"apoc.neighbors.athop.count": null,
"apoc.neighbors.byhop": "neightbors.by_hop",
"apoc.neighbors.byhop.count": null,
"apoc.neighbors.tohop": null,
"apoc.neighbors.tohop.count": null,

"apoc.node.degree": null,
"apoc.node.degree.in": "node.degree_in",
"apoc.node.degree.out": "node.degree_out",
"apoc.node.id": null,
"apoc.node.labels": null,
"apoc.node.relationship.exists": "node.relationship_exists",
"apoc.node.relationship.types": "node.relationship_types",
"apoc.node.relationships.exist": "node.relationship_exists",

"apoc.nodes.collapse": null,
"apoc.nodes.cycles": null,
"apoc.nodes.delete": "nodes.delete",
"apoc.nodes.get": null,
"apoc.nodes.group": null,
"apoc.nodes.link": "nodes.link",
"apoc.nodes.rels": null,
"apoc.nodes.connected": null,
"apoc.nodes.isDense": null,
"apoc.nodes.relationship.types": "nodes.relationship_types",
"apoc.nodes.relationships.exist": "nodes.relationships_exist",

"apoc.path.expand": "path.expand",
"apoc.path.expandConfig": "path.expand",
"apoc.path.spanningTree": null,
"apoc.path.subgraphAll": "path.subgraph_all",
"apoc.path.subgraphNodes": "path.subgraph_nodes",
"apoc.path.combine": "path.combine",
"apoc.path.create": "path.create",
"apoc.path.elements": "path.elements",
"apoc.path.slice": "path.slice",

"apoc.periodic.cancel": null,
"apoc.periodic.commit": null,
"apoc.periodic.countdown": null,
"apoc.periodic.iterate": "periodic.iterate",
"apoc.periodic.list": null,
"apoc.periodic.repeat": null,
"apoc.periodic.submit": null,
"apoc.periodic.truncate": null,

"apoc.refactor.categorize": "refactor.categorize",
"apoc.refactor.cloneNodes": "refactor.clone_nodes",
"apoc.refactor.cloneSubgraph": "refactor.clone_subgraph",
"apoc.refactor.cloneSubgraphFromPaths": "refactor.clone_subgraph_from_paths",
"apoc.refactor.collapseNode": "refactor.collapse_node",
"apoc.refactor.deleteAndReconnect": "refactor.delete_and_reconnect",
"apoc.refactor.extractNode": "refactor.extract_node",
"apoc.refactor.from": "refactor.from",
"apoc.refactor.invert": "refactor.invert",
"apoc.refactor.mergeNodes": null,
"apoc.refactor.mergeRelationships": null,
"apoc.refactor.normalizeAsBoolean": "refactor.normalize_as_boolean",
"apoc.refactor.rename.label": "refactor.rename_label",
"apoc.refactor.rename.nodeProperty": "refactor.rename_node_property",
"apoc.refactor.rename.type": "refactor.rename_type",
"apoc.refactor.rename.typeProperty": "refactor.rename_node_property",
"apoc.refactor.setType": null,
"apoc.refactor.to": "refactor.to",

"apoc.temporal.format": "temporal.format",
"apoc.temporal.formatDuration": null,
"apoc.temporal.toZonedTemporal": null,

"apoc.util.sleep": null,
"apoc.util.validate": null,
"apoc.util.compress": null,
"apoc.util.decompress": null,
"apoc.util.md5": "util_module.md5",
"apoc.util.sha1": null,
"apoc.util.sha256": null,
"apoc.util.sha384": null,
"apoc.util.sha512": null,
"apoc.util.validatePredicate": null,

"apoc.xml.parse": "xml.parse"
}