1
0
Fork 0
arangodb/Documentation/Books/AQL/Operations
Simran Brucherseifer e25c45dbe2 Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
..
Collect.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Filter.mdpp Improve documention (mostly FILTER) 2016-05-25 17:44:17 +02:00
For.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Insert.mdpp Rename Users documentation to Manual 2016-05-24 16:09:21 +02:00
Let.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Limit.mdpp Re-organize Users and AQL documentation 2016-05-02 15:53:13 +02:00
README.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Remove.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Replace.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Return.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Sort.mdpp Re-organize Users and AQL documentation 2016-05-02 15:53:13 +02:00
Update.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
Upsert.mdpp Use camelCase for variable-names in AQL 2016-06-22 15:08:40 +02:00
With.mdpp added documentation for *WITH* 2016-06-07 14:52:37 +02:00

README.mdpp

!CHAPTER High-level operations

The following high-level operations are described here after:

* [FOR](For.md): Iterate over all elements of an array.
* [RETURN](Return.md): Produce the result of a query.
* [FILTER](Filter.md): Restrict the results to elements that match arbitrary logical conditions.
* [SORT](Sort.md): Force a sort of the array of already produced intermediate results.
* [LIMIT](Limit.md): Reduce the number of elements in the result to at most the specified number, optionally skip elements (pagination).
* [LET](Let.md): Assign an arbitrary value to a variable.
* [COLLECT](Collect.md): Group an array by one or multiple group criteria. Can also count and aggregate.
* [REMOVE](Remove.md): Remove documents from a collection.
* [UPDATE](Update.md): Partially update documents in a collection.
* [REPLACE](Replace.md): Completely replace documents in a collection.
* [INSERT](Insert.md): Insert new documents into a collection.
* [UPSERT](Upsert.md): Update an existing document, or create it in the case it does not exist.
* [WITH](With.md): Specify collections used in a query (at query begin only).