我找到了所有残留节点的问题。 这是班级:
class MyNode
include Neo4j::ActiveNode
property :name
property :is_valid, type: Integer, default: 0
end
创建节点后,属性不会自动显示。然后我想搜索所有残留的节点,它返回0
classobject.as(:n).where(is_valid: [0,'']).count
我也尝试过这个
validates :is_valid, numericality: { only_integer: true }
我应该如何处理?
答案 0 :(得分:0)
我通过系统地将is_valid:0添加到我创建它的参数来解决我的问题。我认为它已被设置为默认值:0它将自动设置