diff --git a/Documentation/Books/Users/Aql/DataModification.mdpp b/Documentation/Books/Users/Aql/DataModification.mdpp index 1af26a395a..1f097227ef 100644 --- a/Documentation/Books/Users/Aql/DataModification.mdpp +++ b/Documentation/Books/Users/Aql/DataModification.mdpp @@ -1,4 +1,4 @@ -!CHAPTER Data modification queries +!CHAPTER Data Modification Queries AQL supports the following data-modification operations: @@ -8,6 +8,9 @@ AQL supports the following data-modification operations: - **REMOVE**: remove existing documents from a collection - **UPSERT**: conditionally insert or update documents in a collection +Those operations are detailed in the chapter [High Level Operations](Operations.md). + + !SUBSECTION Modifying a single document Let's start with the basics: `INSERT`, `UPDATE` and `REMOVE` operations on single documents. diff --git a/Documentation/Books/Users/Aql/README.mdpp b/Documentation/Books/Users/Aql/README.mdpp index a4d45c8d04..5a8ee493a9 100644 --- a/Documentation/Books/Users/Aql/README.mdpp +++ b/Documentation/Books/Users/Aql/README.mdpp @@ -25,5 +25,6 @@ operations such as creating and dropping databases, collections and indexes. The syntax of AQL queries is different to SQL, even if some keywords overlap. Nevertheless, AQL should be easy to understand for anyone with an SQL background. -For some example queries, please refer to the page [AQL Examples](../AqlExamples/README.md). +For some example queries, please refer to the pages [Data Modification Queries](DataModification.md) and +[Usual query patterns](../AqlExamples/README.md).