Open
Description
If I want to get all information from a query, I have to write something like this:
graph.Vertex("</en/from_the_terrace>","").Tag("1").Out(["","\u003c/film/film/directed_by\u003e"], "1out2").Tag("2").Out("", "2out3").Tag("3").All();
It would be nice if there were some way to get all the quads related to the query, so that I could make a query like this:
graph.Vertex("</en/from_the_terrace>",).Out("\u003c//film/film/directed_by\u003e").All().Quads();