Tamas Szigyarto

Results 5 comments of Tamas Szigyarto

Example queries below: ``` FOR id IN GRAPH_NEIGHBORS('Test', 'doc/id', {direction:'outbound', maxDepth:1, edgeExamples:[{attr:'value'}]}) FOR u IN User FILTER u._id == id RETURN u ``` Instead below: ``` FOR id IN GRAPH_NEIGHBORS('Test',...

A bit of context. Consider query below: ``` db.Query().For(x => AQL.GraphNeighbors( "graph-name", new { _key = "vertex-key" }, new { direction = EdgeDirection.Outbound, maxDepth = 1, edgeExamples = new[] {...

Thanks a lot, @ra0o0f. I completely missed `includeData` option. CustomAQL works as well, but I will stick with `includeData`. It's just not obvious when it's legal to use document type...

@ra0o0f Not a problem at all. Trial and error works best as usual :)