我试图在用户评论用户评论时尝试创建用户通知。
我正在使用以下gremlin查询 -
g.v(512).outE('Notification').order{it.b.PostedDate <=> it.a.PostedDate}[0..3].transform{ [notificationInfo:it,postInfo:it.inV]}
我得到了以下结果 -
在Edge中获取NotificationInitiatedByVertexId值。如何使用该顶点id(即NotificationInitiatedByVertexId:1280)获取相同查询结果中的顶点信息。
答案 0 :(得分:2)
我建议尝试将其添加到您已有的转换语句中:
g.v(512).outE('Notification').order{it.b.PostedDate <=> it.a.PostedDate}[0..3].transform{ [notificationInfo:it,postInfo:it.inV,notifiedV:g.v(it.NotificationInitiatedByVertexId)]}