标签: neo4j cypher
在密码查询中是否有某种方法可以让WHERE子句仅选择给定属性是时间类型的记录?
WHERE
答案 0 :(得分:0)
可以使用apoc.meta.type函数。例如:
MATCH (f:Foo) WHERE apoc.meta.type(f.bar) IN ['LocalTime', 'OffsetTime', 'ZonedDateTime', 'LocalDateTime'] RETURN f;