2 つのクラス間に 2 種類の関係があります。そのうちの 1 つで、 を確立する必要がありますが、origin
方法がわかりません。誰でも思いつきますか?
class A
include Neo4j::ActiveNode
...
has_many :out, :method1, model_class: B
has_many :out, :method2, model_class: B
...
end
class B
include Neo4j::ActiveNode
...
has_one :in, :something, model_class: A, origin: ?????
...
end
グラフ
関係のタイプはデフォルトのもの (「#」+ メソッドの名前) です。