neo4j无法在现有节点之间创建新关系

时间:2019-02-10 22:30:15

标签: neo4j cypher relationship

当我-

<div  v-bind:style="{'box-shadow': schatten, width: breite, height: hoehe, 'text-align': center, margin: mitte, padding: abstand, background: backcolor}">

setInterval(function(){
    var e = document.getElementById("selection");
    var strUser = e.options[e.selectedIndex].value;
var box = new Vue({
    el: '#anmeldebox',
    data: {

        schatten: '0px 0px 25px black',
        breite: '400px',
        hoehe: '200px',
        center: 'center',
        mitte: '0 auto',
        abstand: '20px',
        backcolor: strUser

    }
});

}, 3000);

然后我-

CREATE (c:Church{name: "Sts. Peter and Paul", address: "3745 S Paulina St Chicago IL 60609"})  

它工作正常,

但是,当我输入相同的语句,但是更改变量(如教堂)时,我得到了(没有更改,没有记录) 尝试创建没有帮助的索引和变体。

例如:

MATCH (p:Priest{name: "Fr. Thomas J OGorman" }), (c:Church {name: "Sts. Peter and Paul"})
MERGE (p)-[:POSTED {posting:1982-83}]->(c)

然后我得到了(没有更改,没有记录)

建议吗?谢谢。

0 个答案:

没有答案