Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建具有不同 dptr_time 的节点,例如 8:00、12:00、14:00。我想找到所有具有 dptr_time 的节点,时间为 30 分钟,比如说 11:45。我找不到时间函数,有没有一种简单的方法可以在密码中做到这一点
最简单的方法是将 dptr_time 以毫秒为单位存储,因为 epoch 作为数值而不是像“8:00”这样的字符串表示。可以使用以下方法轻松过滤数值:
START n=node(....) WHERE n.dptr_time>[lower_boundary_in_millis] and n.dptr_time<[upper_boundary_in_milles] RETURN n