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/790219245",
"_key" : "790219245",
"_rev" : "790219245",
"name" : "Angela"
}