Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始学习 Cypher 查询语言和 GraphDb。我使用节点的类名创建了一些索引,例如:“com.acme.node.SomeNodeType”
我一生都无法弄清楚如何在 Cypher 中引用这个索引。我找到了这个线程,但使用 ` 对我不起作用。
所以我想我有两个问题:
你能试着用''来查询它们吗
start n = node:`my.index`('name:test') return n
?