Neo4j.rb создать уникальные отношения
Вот мой активный узел Neo4j
class User
include Neo4j::ActiveNode
has_many :out, :following, type: :following, model_class: 'User'
end
john = User.find(:name => "John")
tom = User.find(:name => "Tom")
# create following relationship john --> tom
john.following << tom
# check count
john.following.count
#=> 1
# again create the relationship
john.following << tom
# again check count
john.following.count
#=> 2
Я хочу создать уникальные отношения.
Чтобы избежать дублирования, мы должны использовать create unique при создании запроса шифровального отношения.
Пример:
MATCH (root { name: 'root' })
CREATE UNIQUE (root)-[:LOVES]-(someone)
RETURN someone
см.: http://neo4j.com/docs/stable/query-create-unique.html
Как я могу сделать это в Neo4j.rb с Rails...?
Заранее спасибо..
2 ответа
Решение
Это то, что у нас есть проблема, открытая для:
https://github.com/neo4jrb/neo4j/issues/473
На данный момент я бы предложил создать такой метод на User
модель:
def create_unique_follower(other)
Neo4j::Query.match(user: {User: {neo_id: self.neo_id}})
.match(other: {User: {neo_id: other.neo_id}})
.create_unique('user-[:following]->other').exec
end
РЕДАКТИРОВАТЬ: см. Ответ mrstif для обновления
В качестве обновления вы можете сделать следующее:
Для простых отношений используйте unique:true
:
class User
include Neo4j::ActiveNode
has_many :out, :following, type: :following, model_class: 'User', unique: true
end
Для заявленных отношений используйте creates_unique
:
class Following
include Neo4j::ActiveRel
creates_unique
from_class User
to_class User
end