From 0cc6fa40d9da9e3a577c74ffb3eddb74d24b1e06 Mon Sep 17 00:00:00 2001 From: maxkernbach Date: Mon, 18 Jun 2018 10:54:44 +0200 Subject: [PATCH] Doc - clarify WITH for cluster traversal (#5542) --- Documentation/Books/AQL/Graphs/Traversals.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/Books/AQL/Graphs/Traversals.md b/Documentation/Books/AQL/Graphs/Traversals.md index eeaff3af36..cad1ab64bd 100644 --- a/Documentation/Books/AQL/Graphs/Traversals.md +++ b/Documentation/Books/AQL/Graphs/Traversals.md @@ -12,7 +12,7 @@ There are two slightly different syntaxes for traversals in AQL, one for ### Working with named graphs ``` -[WITH collection1[, collection2[, ...collectionN]]] +[WITH vertexCollection1[, vertexCollection2[, ...vertexCollectionN]]] FOR vertex[, edge[, path]] IN [min[..max]] OUTBOUND|INBOUND|ANY startVertex @@ -21,7 +21,7 @@ FOR vertex[, edge[, path]] ``` - `WITH`: optional for single server instances, but required for [graph traversals in a cluster](#graph-traversals-in-a-cluster). - - **collections** (collection, *repeatable*): list of collections that will + - **collections** (collection, *repeatable*): list of vertex collections that will be involved in the traversal - `FOR`: emits up to three variables: - **vertex** (object): the current vertex in a traversal @@ -74,7 +74,7 @@ FOR vertex[, edge[, path]] ### Working with collection sets ``` -[WITH collection1[, collection2[, ...collectionN]]] +[WITH vertexCollection1[, vertexCollection2[, ...vertexCollectionN]]] FOR vertex[, edge[, path]] IN [min[..max]] OUTBOUND|INBOUND|ANY startVertex