We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e938f75 commit 5b449f3Copy full SHA for 5b449f3
commands/graph.copy.md
@@ -9,8 +9,7 @@ parent: "Commands"
9
10
Usage: `GRAPH.COPY <src> <dest>`
11
12
-The `GRAPH.COPY` command creates a copy of a graph, while the copy is performed
13
-the `src` graph is fully accessible.
+The GRAPH.COPY command creates a copy of a graph while leaving the source graph fully accessible.
14
15
Example:
16
@@ -45,7 +44,7 @@ graph_a = db.select_graph('A')
45
44
result = graph_a.query('CREATE (:Account {number: 516637})')
46
47
# Copy Graph 'A' to 'Z'
48
-graph_z = graph_a.copy('A', 'Z')
+graph_z = graph_a.copy('Z')
49
50
# Graphs list including 'A' and 'Z'
51
graph_list = db.list()
0 commit comments