我的数据库存储Java日期,我通过毫秒来搜索该日期
g.V().has('employeeId','350d').collect({it.property('JoinedOn').value().getTime()})
==>1471866919024
但是当我用相同的毫秒值搜索JoinedOn时,它显示空结果
g.V().has('employeeId','350d').has('JoinedOn',new Date(1471866919024))
gremlin>
在gremlin
中存储和执行Date对象操作的最佳方法是什么