1
0
Fork 0

Documentaiotn: Aql links added

This commit is contained in:
jmvan 2016-01-27 20:49:44 +01:00
parent adc5702422
commit da26ccd41e
2 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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).