From 3ad4d56026aa2211097fd55d1cf7146b753e17e4 Mon Sep 17 00:00:00 2001 From: Mario Castro Date: Fri, 4 Sep 2015 23:18:26 +0200 Subject: [PATCH] Order of parameters when using :a and :d are switched --- docs/Overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Overview.md b/docs/Overview.md index ada5960..17cce4a 100644 --- a/docs/Overview.md +++ b/docs/Overview.md @@ -53,13 +53,13 @@ Where you'll be given a `cayley>` prompt. It's expecting Gremlin/JS, but that ca New nodes and links can be added with the following command: ```bash -cayley> :a object predicate subject label . +cayley> :a subject predicate object label . ``` Removing links works similarly: ```bash -cayley> :d object predicate subject . +cayley> :d subject predicate object . ``` This is great for testing, and ultimately also for scripting, but the real workhorse is the next step.