我是gremlin的新手,需要提供绘制图表的数据
图表
x轴 - >时间戳
y轴 - >产品总和
以下是图表格式的数据
节点关系(属性)节点
userA like(timestamp = 22/02/2013)productXY
userX喜欢(timestamp = 21/05/2013)productAA
userG喜欢(timestamp = 22/07/2014)productXB
userT喜欢(timestamp = 03/02/2013)productXR
userA喜欢(timestamp = 22/02/2013)productXT
userC喜欢(timestamp = 19/11/2014)productUY
userD喜欢(timestamp = 22/07/2014)productPY
userE喜欢(timestamp = 09/07/2013)productLY
userJ喜欢(timestamp = 09/07/2013)productXY
userP喜欢(timestamp = 09/07/2013)productKY
查询的输出应该是这样的。
[09/07 / 2013,3] [22/02 / 2013,2] [21/05 / 2013,1] [22/07 / 2014,2] [03/02 / 2013,1] [19/11 / 2014,1]
有人可以帮我查询查询。
注意:我使用Rexster RESTAPI将数据呈现给应用程序。
提前致谢
答案 0 :(得分:0)
在gremlin-users mailing list中回答:
基本上 -
您可以使用Gremlin extension和此查询: g.V()。OUTE( “喜欢”)。timestamp.groupCount()。帽()。下一个()