我有以下密码:
match
(n:Settings)<-[rel_task]-(f:Task)-[rel_task]->(g:Group)<-[rel_symbol]-(s)
where
n.deadline = ''
or
not exists(n.deadline)
set
n.deadline =
case when
s.waitdatetimeutc > 1072792206510000000
then
'Custom'
else
'None'
end
当我执行此密码时,所有操作都会正确完成。但它说:
设置2个属性,在1毫秒后完成
我检查了具有截止日期属性的节点,它只是一个。结果也是正确的。所以我只是想知道为什么它说它设置了2个属性。