1
0
Fork 0
arangodb/Documentation/Examples/collectionByExampleNext.gen...

9 lines
215 B
Plaintext

arangosh> var a = db.users.byExample( {"name" : "Angela" } );
arangosh> while (a.hasNext()) print(a.next());
{
"_id" : "users/784672931",
"_key" : "784672931",
"_rev" : "784672931",
"name" : "Angela"
}