Following table summarizes list of high level operations supported in AQL.
|
Operation |
Description |
|
FOR |
User to iterate over a collection or view and traverse a graph. |
|
RETURN |
Return the result of the query |
|
FILTER |
Used to filter the data based on given conditions. |
|
SEARCH |
Full text search the index on an ArangoSearch View |
|
SORT |
Sort the results |
|
LIMIT |
Limit the number of elements in the result |
|
LET |
Define a variable with given value. |
|
COLLECT |
Group an array by one or multiple group criteria. |
|
REMOVE |
Remove documents from a collection |
|
UPDATE |
Partially update the documents in a collection. |
|
REPLACE |
Replace the documents in a collection |
|
INSERT |
Insert new documents into a collection |
|
UPSERT |
Update/replace an existing document, or create it in the case it does not exist. |
|
WITH |
Specify the collections used in a query |
No comments:
Post a Comment