我正在使用neo4j 5.2.3。我的模型议程中有一个after_update回调.rb
In [7]:
df['compound'] = df['value'].cumprod()
df
Out[7]:
date value compound
0 2015-01-01 1.1 1.1000
1 2015-01-01 1.2 1.3200
2 2015-01-01 1.1 1.4520
3 2015-01-01 1.1 1.5972
在模型议程中的方法after_update : check_points
after_update : update_issue_points
中,我正在执行如下所示的update_issue_points
,它会触发after_update回调,从而导致无限循环。在self.save
中,我们可以在播放Activerecord
时跳过回调。但我无法找到如何使用类似ORM的neo4j包装器,neo4j.rb。
save
如何使用neo4j.rb跳过回调?任何帮助将不胜感激。
UPDATE 此问题与建议的重复项不同,因为此处ORM不是ActiveRecord,它是neo4j.rb。