Merge pull request #306 from sayden/correction-in-overview-docs

Order of parameters when using :a and :d are switched
This commit is contained in:
Barak Michener 2015-10-05 17:15:17 -04:00
commit d831fdd4c2

View file

@ -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: New nodes and links can be added with the following command:
```bash ```bash
cayley> :a object predicate subject label . cayley> :a subject predicate object label .
``` ```
Removing links works similarly: Removing links works similarly:
```bash ```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. This is great for testing, and ultimately also for scripting, but the real workhorse is the next step.