Мне нужна связь многих ко многим между двумя моделями.Пример нормальной ассоциации рельсов для этого:
class A < ApplicationRecord
has_many :abs
has_many :bs, through: :abs
end
class B < ApplicationRecord
has_many :abs
has_many :as, through: :abs
end
class AB < ApplicationRecord
belongs_to :a
belongs_to :b
end
Как это сделать с neo4j?