Skip to content

Commit

Permalink
Update graph-difference.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-cowley authored Jun 30, 2023
1 parent e38e43a commit 5b4a4b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
== `apoc.diff.graphs` procedure
= The `apoc.diff.graphs` procedure

The procedure accepts 2 string argument, the `source` and the `dest`, representing 2 queries to compare,
and an optional `config` map as a 3rd parameter.
Expand Down Expand Up @@ -163,4 +163,4 @@ In this case we can pass the `databaseName`, that is:
CALL apoc.diff.graphs("MATCH p = (start:Person)-[rel:KNOWS]->(end) RETURN start, rel, end", "MATCH p = (start)-[rel:KNOWS]->(end) RETURN start, rel, end", {boltConfig: {databaseName: "secondDestDb"}, dest: {target: {type: "URL", value: "bolt://neo4j:apoc@localhost:7687"}}})
----

with the same result as above, if the dataset is the same.
with the same result as above, if the dataset is the same.

0 comments on commit 5b4a4b3

Please sign in to comment.