Gremlin-python:如何使用用户自定义步骤重用遍历逻辑
Gremlin-python: How to use user-defined-steps to reuse traversal logic
我正在尝试简化以下遍历:
operation_dict['output_schema'] = g.V(operation_id).outE('uses').inV()\
.project('id','label','attribute_id', 'attribute_name', 'dataType')\
.by(T.id).by(T.label).by('attribute_id').by('attribute_name').by('dataType').toList()
因为我想重用投影遍历,所以我想从遍历中提取它,就像下面的片段:
def extract_attribute(x):
return g.V(x).project('id','label','attribute_id', 'attribute_name', 'dataType')\
.by(T.id).by(T.label).by('attribute_id').by('attribute_name').by('dataType')
operation_dict['input_schema'] = g.V(operation_id).inE('follows').outV().outE('uses').inV()\
.map(lambda x: extract_attribute(x)).toList()
如何在 Python 的 Gremlin 中做到这一点?我尝试了 Lambda 功能,但到目前为止没有成功。
有几种方法可以做到这一点,但这里有一种方法符合您的尝试:
>>> def c(x):
... return __.project('x').by(x)
...
>>> g.V().map(c('name')).toList()
[{'x': 'marko'}, {'x': 'vadas'}, {'x': 'lop'}, {'x': 'josh'}, {'x': 'ripple'}, {'x': 'peter'}]
你只需要生成一个anonymous child traversal in your extract_attribute()
function. Another more advanced way to re-use traversal logic is to build a custom Gremlin DSL。
我正在尝试简化以下遍历:
operation_dict['output_schema'] = g.V(operation_id).outE('uses').inV()\
.project('id','label','attribute_id', 'attribute_name', 'dataType')\
.by(T.id).by(T.label).by('attribute_id').by('attribute_name').by('dataType').toList()
因为我想重用投影遍历,所以我想从遍历中提取它,就像下面的片段:
def extract_attribute(x):
return g.V(x).project('id','label','attribute_id', 'attribute_name', 'dataType')\
.by(T.id).by(T.label).by('attribute_id').by('attribute_name').by('dataType')
operation_dict['input_schema'] = g.V(operation_id).inE('follows').outV().outE('uses').inV()\
.map(lambda x: extract_attribute(x)).toList()
如何在 Python 的 Gremlin 中做到这一点?我尝试了 Lambda 功能,但到目前为止没有成功。
有几种方法可以做到这一点,但这里有一种方法符合您的尝试:
>>> def c(x):
... return __.project('x').by(x)
...
>>> g.V().map(c('name')).toList()
[{'x': 'marko'}, {'x': 'vadas'}, {'x': 'lop'}, {'x': 'josh'}, {'x': 'ripple'}, {'x': 'peter'}]
你只需要生成一个anonymous child traversal in your extract_attribute()
function. Another more advanced way to re-use traversal logic is to build a custom Gremlin DSL。