我有一个包含与这些单词相关的单词和文档的数据集。我想在它们上面设置标签,将它们分成这两类。我能够通过这样做来创建标签:
if not "Social Words" in graph_db.node_labels:
neo4j.Schema.create_index(graph_db.schema, "Social Words", "word")
if not "Documents" in graph_db.node_labels:
neo4j.Schema.create_index(graph_db.schema, "Documents", "url")
问题是我需要在“word”和“url”字段上强制执行唯一性。我正在添加节点和标签如下
doc,= graph_db.create({"url": url})
doc.add_labels("Documents")
我的问题是:
答案 0 :(得分:1)
数目: