1
0
Fork 0
arangodb/Documentation/Books/HTTP/Traversal
Simran Brucherseifer e4eeb57e30 Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
..
README.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
knows_graph.png

README.mdpp

HTTP Interface for Traversals
=============================

### 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](../../Manual/Appendix/Glossary.html#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.

Executing Traversals via HTTP
-----------------------------

@startDocuBlock JSF_HTTP_API_TRAVERSAL

All examples were using this graph:

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