1
0
Fork 0
arangodb/Documentation/Examples/05_workWithAQL_statements8....

9 lines
229 B
Plaintext

arangosh> stmt = db._createStatement( {
........> "query": "FOR i IN [ @one, @two ] RETURN i * 2",
........> "bindVars": {
........> "one": 1,
........> "two": 2
........> }
........> } );
[object ArangoStatement]