Changed identifier "not" to "except" for iterator builder.

This commit is contained in:
Matei Chiperi 2014-08-28 17:52:58 -07:00
parent 305815e663
commit b97e6782ff
2 changed files with 3 additions and 3 deletions

View file

@ -298,7 +298,7 @@ func buildIteratorTreeHelper(obj *otto.Object, ts graph.TripleStore, base graph.
it = buildIteratorTreeHelper(arg.Object(), ts, subIt)
case "in":
it = buildInOutIterator(obj, ts, subIt, true)
case "not":
case "except":
arg, _ := obj.Get("_gremlin_values")
firstArg, _ := arg.Object().Get("0")
if !isVertexChain(firstArg.Object()) {