【发布时间】:2021-03-12 10:31:34
【问题描述】:
我有一个简单的图表,用户可以按产品(高级,普通)。
g.addV('user').as('1')
.property(single, 'name', 'peter')
.addV('product').as('2').property(single, 'premium', false)
.addV('product').as('3').property(single, 'premium', true).property(single, 'order', 1)
.addV('product').as('3').property(single, 'premium', true).property(single, 'order', 2)
.addE('bought').from('1').to('2')
我坚持只需要显示用户未购买的优质产品的查询。提前致谢。
【问题讨论】:
标签: java gremlin tinkerpop3 amazon-neptune