边缘(或更确切地说是元素)没有任何元数据,如果这是你要求的。创建边时,您必须将创建的时间戳存储为属性。稍后您可以像任何其他属性一样查询时间戳。
// create the edge a.addEdge("has", b, "created", System.currentTimeMillis()) // get the timestamp g.V(a).outE("has").filter(inV().is(b)).values("created")