1
0
Fork 0
arangodb/Documentation/Books/Users/HttpTraversal
Wilfried Goesgens aae19ff291 Fix dangling anchors and add checker script to the make target. 2015-11-26 18:51:39 +01:00
..
README.mdpp Fix dangling anchors and add checker script to the make target. 2015-11-26 18:51:39 +01:00

README.mdpp

!CHAPTER HTTP Interface for Traversals 

!SUBSECTION Traversals

ArangoDB's graph traversals are executed on the server. Traversals can be 
initiated by clients by sending the traversal description for execution to
the server.

Traversals in ArangoDB are used to walk over a graph
stored in one [edge collection](../Glossary/README.md#edge-collection). It can easily be described
which edges of the graph should be followed and which actions
should be performed on each visited vertex.
Furthermore the ordering of visiting the nodes can be
specified, for instance depth-first or breadth-first search
are offered.

!SECTION Executing Traversals via HTTP

@startDocuBlock JSF_HTTP_API_TRAVERSAL

All examples were using this graph:

![Persons relation Example Graph](../Graphs/knows_graph.png)