diff --git a/Doxygen/Examples.Ahuacatl/aqlqueryresulthomogenuous b/Doxygen/Examples.Ahuacatl/aqlqueryresulthomogenuous index 814d717b5e..2e088ac5a0 100644 --- a/Doxygen/Examples.Ahuacatl/aqlqueryresulthomogenuous +++ b/Doxygen/Examples.Ahuacatl/aqlqueryresulthomogenuous @@ -1,4 +1,6 @@ FOR u IN users RETURN { "id" : u.id, "name" : u.name } -[ { "id" : 1, "name" : "John" }, { "id" : 2, "name" : "Vanessa" }, { "id" : 3, "name" : "Amy" } ] +[ { "id" : 1, "name" : "John" }, + { "id" : 2, "name" : "Vanessa" }, + { "id" : 3, "name" : "Amy" } ] diff --git a/Doxygen/Examples.Ahuacatl/aqlqueryresultinhomogenuous b/Doxygen/Examples.Ahuacatl/aqlqueryresultinhomogenuous index 3452caffee..5e0a2d1e66 100644 --- a/Doxygen/Examples.Ahuacatl/aqlqueryresultinhomogenuous +++ b/Doxygen/Examples.Ahuacatl/aqlqueryresultinhomogenuous @@ -1,4 +1,6 @@ FOR u IN users RETURN u -[ { "id" : 1, "name" : "John", "active" : false }, { "age" : 32, "id" : 2, "name" : "Vanessa" }, { "friends" : [ "John", "Vanessa" ], "id" : 3, "name" : "Amy" } ] +[ { "id" : 1, "name" : "John", "active" : false }, + { "age" : 32, "id" : 2, "name" : "Vanessa" }, + { "friends" : [ "John", "Vanessa" ], "id" : 3, "name" : "Amy" } ] diff --git a/Doxygen/Examples.Ahuacatl/aqlqueryresultscalar b/Doxygen/Examples.Ahuacatl/aqlqueryresultscalar new file mode 100644 index 0000000000..dfe6d19e6d --- /dev/null +++ b/Doxygen/Examples.Ahuacatl/aqlqueryresultscalar @@ -0,0 +1,4 @@ +FOR u IN users + RETURN u.id + +[ 1, 2, 3 ] diff --git a/RestServer/aql.dox b/RestServer/aql.dox index bd6e38446f..24e03fdaa6 100644 --- a/RestServer/aql.dox +++ b/RestServer/aql.dox @@ -33,6 +33,8 @@ ///