我正在使用以下查询:
g.V(741440).outE('Notification').order().by('PostedDateLong', decr).range(0,1).as('notificationInfo').match(
__.as('notificationInfo').inV().as('postInfo'),
).select('notificationInfo','postInfo')
它给出了以下结果:
{
"requestId": "9846447c-4217-4103-ac2e-de3536a3c62a",
"status": {
"message": "",
"code": 200,
"attributes": { }
},
"result": {
"data": [
{
"notificationInfo": {
"id": "c0zs-fw3k-347p-g2g0",
"label": "Notification",
"type": "edge",
"inVLabel": "Comment",
"outVLabel": "User",
"inV": 749664,
"outV": 741440,
"properties": {
"ParentPostId": "823488",
"PostedDate": "2016-05-26T02:35:52.3889982Z",
"PostedDateLong": 635998269523889982,
"Type": "CommentedOnPostNotification",
"NotificationInitiatedByVertexId": "1540312"
}
},
"postInfo": {
"id": 749664,
"label": "Comment",
"type": "vertex",
"properties": {
"PostImage": [
{
"id": "amto-g2g0-2wat",
"value": ""
}
],
"PostedByUser": [
{
"id": "am18-g2g0-2txh",
"value": "orbitpage@gmail.com"
}
],
"PostedTime": [
{
"id": "amfg-g2g0-2upx",
"value": "2016-05-26T02:35:39.1489483Z"
}
],
"PostMessage": [
{
"id": "aln0-g2g0-2t51",
"value": "hi"
}
]
}
}
}
],
"meta": { }
}
}
我想在响应中获取Vertex“NotificationInitiatedByVertexId”(边缘属性)的信息。 为此,我尝试了以下查询:
g.V(741440).outE('Notification').order().by('PostedDateLong', decr).range(0,2).as('notificationInfo').match(
__.as('notificationInfo').inV().as('postInfo'),
g.V(1540312).next().as('notificationByUser')
).select('notificationInfo','postInfo','notificationByUser')
注意:我在子查询中直接尝试使用顶点Id,因为我不知道如何从查询本身的edge属性中动态获取值。
这是错误的。我尝试了很多,但无法找到任何解决方案。
答案 0 :(得分:1)
我假设您将Titan生成的标识符存储在名为NotificationInitiatedByVertexId
的边缘属性中。如果是这样,请考虑以下内容,即使第一部分没有真正回答您的问题。我不认为你应该在边缘存储顶点标识符。您的图模型应该明确地跟踪NotificationInitiatedBy
与边缘的关系,并通过在边缘上存储顶点的标识符来绕过它。此外,如果您必须以某种方式迁移数据,则不会保留ID(Titan将生成新的数据)并尝试对其进行排序将是一团糟。
即使这不是Titan生成的标识符和您创建的逻辑标识符,我仍然认为我会调整您的图表模式并将Notification
提升为顶点。然后你的Gremlin遍历会更容易流动。
现在,假设您没有更改它,那么我没有理由不在同一个请求中发出两个查询,然后将结果合并到一个数据结构中。您只需要使用顶点id进行查找,这将非常快速且便宜:
edgeStuff = g.V(741440).outE('Notification').
order().by('PostedDateLong', decr).range(0,1).as('notificationInfo').
... // whatever logic you have
select('notificationInfo','postInfo').next()
vertexStuff = g.V(edgeStuff.get('notificationInfo').value('NotificationInitiatedByVertexId')).next()
[notificationInitiatedBy: vertexStuff, notification: edgeStuff]