1

我试图添加一个顶点,该顶点将链接到另一个顶点,在它们的边缘之间具有条件属性值。

到目前为止,这就是我想出的: - 这运行没有错误,但我无法得到任何结果。

g.V().has('label', 'product')
   .has('id', 'product1')
   .outE('has_image')
   .has('primary', true)
   .inV()
   .choose(fold().coalesce(unfold().values('public_url'), constant('x')).is(neq('x')))
       .option(true, 
           addV('image')
               .property('description', '')
               .property('created_at', '2019-10-31 09:08:15')
               .property('updated_at', '2019-10-31 09:08:15')
               .property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef')
               .property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png')
               .V()
               .hasLabel('product')
               .has('id', 'product1')
               .addE('has_image')
               .property('primary', false))
       .option(false, 
           addV('image')
               .property('description', '')
               .property('created_at', '2019-10-31 09:08:15')
               .property('updated_at', '2019-10-31 09:08:15')
               .property('pk', 'f920a930-fbbd-11e9-b444-8bccc55453b9')
               .property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png')
               .V()
               .hasLabel('product')
               .has('id', 'product1')
               .addE('has_image')
               .property('primary', true))

我在这里做的是试图在顶点和顶点primary之间设置新添加的边的属性,这取决于 a是否已经连接到边已经设置为 true 的地方。imageproductproductimageprimary

如果 aproduct已经有一个image带有边缘的属性:primary:true那么将链接到产品的新添加的图像应该有一个带有属性的边缘primary:false

种子天蓝色graphdb:

//add product vertex
g.addV('product').property(id, 'product1').property('pk', 'product1')

//add image vertex
g.addV('image').property(id, 'image1').property('public_url', 'url_1').property('pk', 'image1');


//link products to images

g.V('product1').addE('has_image').to(V('image1')).property('primary', true)

4

1 回答 1

1

我很惊讶你的遍历运行没有错误,因为我遇到了几个关于你使用的语法问题option()以及你的混合T.id和“id”的属性键的一些其他问题(后者可能是你问题的一部分,为什么这个没有按原样工作,但我不完全确定)。当然,我没有在 CosmosDB 上进行测试,所以也许他们对 Gremlin 语言如此随意。

无论如何,假设我正确地遵循了您的解释,我认为有一种方法可以大大简化您的 Gremlin。我想你只需要这个:

g.V('product1').as('p').
  addV('image').
    property('description', '').
    property('created_at', '2019-10-31 09:08:15').
    property('updated_at', '2019-10-31 09:08:15').
    property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef').
    property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png').
    addE('has_image').
      from('p').
    property('primary', choose(select('p').outE('has_image').values('primary').is(true), 
                          constant(false), constant(true)))

现在,我想说这是 Gremlin 最惯用的方法,因为我没有在 CosmosDB 上测试过,所以我不能说这种方法是否适合你,但也许看看我下面的控制台会话,你可以看到它确实满足您的期望:

gremlin> g.V('product1').as('p').
......1>   addV('image').
......2>     property('description', '').
......3>     property('created_at', '2019-10-31 09:08:15').
......4>     property('updated_at', '2019-10-31 09:08:15').
......5>     property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef').
......6>     property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png').
......7>     addE('has_image').
......8>       from('p').
......9>     property('primary', choose(select('p').outE('has_image').values('primary').is(true), constant(false), constant(true)))
==>e[31][product1-has_image->25]
gremlin> g.E().elementMap()
==>[id:31,label:has_image,IN:[id:25,label:image],OUT:[id:product1,label:product],primary:true]
gremlin> g.V('product1').as('p').
......1>   addV('image').
......2>     property('description', '').
......3>     property('created_at', '2019-10-31 09:08:15').
......4>     property('updated_at', '2019-10-31 09:08:15').
......5>     property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef').
......6>     property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png').
......7>     addE('has_image').
......8>       from('p').
......9>     property('primary', choose(select('p').outE('has_image').values('primary').is(true), constant(false), constant(true)))
==>e[38][product1-has_image->32]
gremlin> g.E().elementMap()
==>[id:38,label:has_image,IN:[id:32,label:image],OUT:[id:product1,label:product],primary:false]
==>[id:31,label:has_image,IN:[id:25,label:image],OUT:[id:product1,label:product],primary:true]
gremlin> g.V('product1').as('p').
......1>   addV('image').
......2>     property('description', '').
......3>     property('created_at', '2019-10-31 09:08:15').
......4>     property('updated_at', '2019-10-31 09:08:15').
......5>     property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef').
......6>     property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png').
......7>     addE('has_image').
......8>       from('p').
......9>     property('primary', choose(select('p').outE('has_image').values('primary').is(true), constant(false), constant(true)))
==>e[45][product1-has_image->39]
gremlin> g.E().elementMap()
==>[id:38,label:has_image,IN:[id:32,label:image],OUT:[id:product1,label:product],primary:false]
==>[id:45,label:has_image,IN:[id:39,label:image],OUT:[id:product1,label:product],primary:false]
==>[id:31,label:has_image,IN:[id:25,label:image],OUT:[id:product1,label:product],primary:true]

如果这看起来正确并且这在 CosmosDB 中无法正常工作,那是因为第 9 行使用 aTraversal作为property()CosmosDB 中尚不支持的参数。补救措施是简单地反转该行:

g.V('product1').as('p').
  addV('image').
    property('description', '').
    property('created_at', '2019-10-31 09:08:15').
    property('updated_at', '2019-10-31 09:08:15').
    property('pk', 'f920a210-fbbd-11e9-bed6-b9a9c92913ef').
    property('path', 'product_images/87wfMABXBodgXL1O4aIf6BcMMG47ueUztjNCkGxP.png').
    addE('has_image').
      from('p').
    choose(select('p').outE('has_image').values('primary').is(true), 
           property('primary', false), 
           property('primary', true))

我发现这种方法的可读性稍差一些,因为property()它不符合addE()但是,它不是一个糟糕的选择。

于 2019-10-31T12:20:42.790 回答