1
0
Fork 0

fixed Doxygen error

This commit is contained in:
Jan Steemann 2013-01-15 09:17:19 +01:00
parent 3d7f0a1826
commit 3fbf030741
1 changed files with 2 additions and 2 deletions

View File

@ -364,7 +364,7 @@ While the `byExample` works very well for simple queries where you
and `or` conditions. Therefore, ArangoDB also supports a full-blown
query language.
arangosh> db._query('FOR user IN example FILTER user.name == "Musterfrau" return user').toArray()
arangosh> db._query('FOR user IN example FILTER user.name == "Musterfrau" RETURN user').toArray()
[
{
_id : "4538791/6308263",
@ -376,7 +376,7 @@ query language.
Search for all persons over 30.
arangosh> db._query('FOR user IN example FILTER user.age > 30" return user').toArray()
arangosh> db._query('FOR user IN example FILTER user.age > 30 RETURN user').toArray()
[
{
_id : "4538791/6308263",