1
0
Fork 0
arangodb/Documentation/Books/AQL/Views
Simran 34ec56d421 Feature/misc spelling corrections (#5164) 2018-07-13 13:06:20 +02:00
..
ArangoSearch Feature/misc spelling corrections (#5164) 2018-07-13 13:06:20 +02:00
README.md Doc - Add ArangoSearch as top-level chapter in Manual and AQL docs (#5702) 2018-07-04 14:46:26 +02:00

README.md

Views in AQL

Conceptually a view is just another document data source, similar to an array or a document/edge collection. The only distinction is that when querying views the VIEW keyword must be specified in the FOR statement just before the view name, e.g.:

FOR doc IN VIEW exampleView FILTER ... SORT ... RETURN ...

A view is meant to be an abstraction over a transformation applied to documents of zero or more collections. The transformation is view-implementation specific and may even be as simple as an identity transformation thus making the view represent all documents available in the specified set of collections.

Views can be defined and administered on a per view-type basis via the web interface.

The currently supported view implementations are: