1
0
Fork 0
arangodb/Documentation/Books/AQL/Operations
Simran Brucherseifer e4eeb57e30 Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
..
Collect.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Filter.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
For.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Insert.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Let.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Limit.mdpp 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
Remove.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Replace.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Return.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Sort.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Update.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
Upsert.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00
With.mdpp Docs: Use standard Markdown notation for headlines and disable MarkdownPP 2016-12-06 02:41:58 +01:00

README.mdpp

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/replace 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).