0
どのようにしてループ上で増加する変数を持つことができますか?このAQLを試してもうまくいきません。Arangodbのループ変数
LET x=0 // I am trying to find a way to increase this one over some conditions
FOR v IN male
Update v WITH (count:x+1) IN male
どのようにしてループ上で増加する変数を持つことができますか?このAQLを試してもうまくいきません。Arangodbのループ変数
LET x=0 // I am trying to find a way to increase this one over some conditions
FOR v IN male
Update v WITH (count:x+1) IN male
AQLの変数は不変なので、再割り当てできません。 docs