Caesar LaVey

Results 5 comments of Caesar LaVey

Keep in mind that any `.as('something')` will enable (partial) path tracking. You want to prevent path tracking whenever possible, thus the better solution would be: ``` g.withSack(6).V().hasLabel('airport'). filter(project('a','b'). by('runways'). by(sack())....

I didn't mean that you should reformat the query. Just don't print `gremlin>` for each line. That's what the real Gremlin shell would do: ``` gremlin> g.V().and( gremlin> outE('knows'), gremlin>...

Yep, that would ne nice.

Here's a good example: http://www.gremlinbin.com/bin/view/57247850bf711 What I actually pasted was this: ``` groovy g.addV("name", "Root").as("root"). addV("name", "Year 2010").as("y2010").addV("name", "Year 2011").as("y2011"). addV("name", "Month 12").as("m12").addV("name", "Month 01").as("m01"). addV("name", "Day 31").as("d31").addV("name", "Day 01").as("d01").addV("name",...

Cool, I think it would already help a lot.