在neo4j中检测时间类型

时间:2019-01-10 15:57:42

标签: neo4j cypher

在密码查询中是否有某种方法可以让WHERE子句仅选择给定属性是时间类型的记录?

1 个答案:

答案 0 :(得分:0)

可以使用apoc.meta.type函数。例如:

MATCH (f:Foo)
WHERE apoc.meta.type(f.bar) IN ['LocalTime', 'OffsetTime', 'ZonedDateTime', 'LocalDateTime']
RETURN f;