1
0
Fork 0
arangodb/Documentation/Books/Users/General-Graphs
gschwab 834a4a5c7c docu feedback integrated 2014-06-25 11:20:24 +02:00
..
FluentAQLInterface.mdpp Started improving the layout of FluentAQL Documentation in general graph module 2014-06-20 14:57:04 +02:00
Functions.mdpp processed lucas feedback regarding aql docu 2014-06-24 13:13:01 +02:00
Management.mdpp docu feedback integrated 2014-06-25 11:20:24 +02:00
README.mdpp Review of General Graph 2014-06-24 23:44:49 +08:00

README.mdpp

!CHAPTER Graphs

This chapter describes the general-graph module.
It allows you to define a graph that is spread across several edge and document collections.
This allows you to structure your models in line with your domain and group them logically in collections giving you the power to query them in the same graph queries.
There is no need to include the referenced collections within the query, this module will handle it for you.

!SECTION First Steps with Graphs

A Graph consists of *vertices* and *edges*. Edges are stored as documents in *edge
collections*. In general a vertex is stored in a document collection. Which collections are used within
a graph is defined via *edge definitions*. A graph can have an arbitrary number of edge
definitions.

!SUBSUBSECTION Three Steps to create a graph

@startDocuBlock JSF_general_graph_how_to_create