"UNIQUEKID"
"CONSTRAINT ON ( keyword:Keyword ) ASSERT (keyword.id) IS UNIQUE"
"Constraint( id=10, name='UNIQUEKID', type='UNIQUENESS', schema=(:Keyword {id}), ownedIndex=9 )"
I add a keyword node with name "residual network" with relationship "recommend" between other node.
after, I add a keyword node with same name "residual network"
match (k:Keyword) return k;
the two node that have same name property "residual network" return with different number id
Please fix this error.