我的关系type
名为str-dist
连字符使得密码非常不满意。处理连字符的正确方法是什么? (我们最终通过重命名关系类型来解决这个问题,但我仍然因为学习而感到好奇)
// Intended Query:
MATCH n:Cars-[:str-dist]-m:Cars
RETURN n, m
// Tried all of the following, with no luck
MATCH n:Cars-[:str`-dist]-m:Cars
MATCH n:Cars-[:str\-dist]-m:Cars
MATCH n:Cars-[:"str-dist"]-m:Cars
MATCH n:Cars-[:'str-dist']-m:Cars
MATCH n:Cars-[:`str-dist`]-m:Cars