gremlin 中的边缘时间戳
Edge timestamp in gremlin
我可以获取在 gremlin
中创建的 edge & vertex
的时间戳吗
a.addEdge("has",b)
a & b
是两个顶点。如何获取边创建时间?
边缘(或者更确切地说是一般元素)没有任何元数据,如果这是您所要求的。创建边缘时,您必须将创建时间戳存储为 属性。稍后您可以像查询任何其他 属性.
一样查询时间戳
// create the edge
a.addEdge("has", b, "created", System.currentTimeMillis())
// get the timestamp
g.V(a).outE("has").filter(inV().is(b)).values("created")
我可以获取在 gremlin
中创建的edge & vertex
的时间戳吗
a.addEdge("has",b)
a & b
是两个顶点。如何获取边创建时间?
边缘(或者更确切地说是一般元素)没有任何元数据,如果这是您所要求的。创建边缘时,您必须将创建时间戳存储为 属性。稍后您可以像查询任何其他 属性.
一样查询时间戳// create the edge
a.addEdge("has", b, "created", System.currentTimeMillis())
// get the timestamp
g.V(a).outE("has").filter(inV().is(b)).values("created")