gremlinpython - 从边缘获取 ID 作为简单列表而不是字典
gremlinpython - get IDs from edges as simple list instead of dictionary
使用 gremlinpython 时,是否可以仅 return 边的 ID 列表,而不是 return 这个冗长的字典?
因此,目前 g.E().limit(10).id().toList()
return 是这样的:
[{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '4g09-20qw-2dx-1l1c'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5hxx-9x9k-2dx-4qo8'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': 'cljk-qikg-2dx-pzls'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '4vth-1xns-2dx-8940'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5f61-bex4-2dx-sgw'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5xc3-ag48-2dx-a6og'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5xc6-4awg-2dx-f6v4'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': 'bwnk-k0ow-2dx-7dio'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5lhi-pbk-2dx-2wfc'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5d6x-avyg-2dx-7gns'}}]
但我希望它成为 return 这个:
['4g09-20qw-2dx-1l1c', '5hxx-9x9k-2dx-4qo8', 'cljk-qikg-2dx-pzls', '4vth-1xns-2dx-8940', '5f61-bex4-2dx-sgw', '5xc3-ag48-2dx-a6og', '5xc6-4awg-2dx-f6v4', 'bwnk-k0ow-2dx-7dio', '5lhi-pbk-2dx-2wfc', '5d6x-avyg-2dx-7gns']
这在 gremlin 控制台中按预期工作。
Python3.7, gremlinpython==3.4.2
JanusGraph 将 RelationIdentifier
序列化为 Map
- 你可以看到代码 here。此结果与您在 Gremlin 控制台中获得的结果不同,因为控制台使用特殊的 "ToString" 序列化程序,它只对从服务器发回给它的每个结果项调用 toString()
方法。
我能想到的最简单的解决方法是在 Python 中为 "janusgraph:RelationIdentifier" 编写自己的反序列化器,然后将其添加到您正在使用的 GraphSON 版本的 list of deserializers .我没有测试过这个,但我想代码看起来像:
class RelationIdentifierJanusDeserializer(_GraphSONTypeIO):
graphson_type = "janusgraph:RelationIdentifier"
@classmethod
def objectify(cls, d, reader):
return str(d)
这是一个演示如何添加自定义序列化程序以及如何覆盖序列化程序的测试:
使用 gremlinpython 时,是否可以仅 return 边的 ID 列表,而不是 return 这个冗长的字典?
因此,目前 g.E().limit(10).id().toList()
return 是这样的:
[{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '4g09-20qw-2dx-1l1c'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5hxx-9x9k-2dx-4qo8'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': 'cljk-qikg-2dx-pzls'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '4vth-1xns-2dx-8940'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5f61-bex4-2dx-sgw'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5xc3-ag48-2dx-a6og'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5xc6-4awg-2dx-f6v4'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': 'bwnk-k0ow-2dx-7dio'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5lhi-pbk-2dx-2wfc'}},
{'@type': 'janusgraph:RelationIdentifier',
'@value': {'relationId': '5d6x-avyg-2dx-7gns'}}]
但我希望它成为 return 这个:
['4g09-20qw-2dx-1l1c', '5hxx-9x9k-2dx-4qo8', 'cljk-qikg-2dx-pzls', '4vth-1xns-2dx-8940', '5f61-bex4-2dx-sgw', '5xc3-ag48-2dx-a6og', '5xc6-4awg-2dx-f6v4', 'bwnk-k0ow-2dx-7dio', '5lhi-pbk-2dx-2wfc', '5d6x-avyg-2dx-7gns']
这在 gremlin 控制台中按预期工作。
Python3.7, gremlinpython==3.4.2
JanusGraph 将 RelationIdentifier
序列化为 Map
- 你可以看到代码 here。此结果与您在 Gremlin 控制台中获得的结果不同,因为控制台使用特殊的 "ToString" 序列化程序,它只对从服务器发回给它的每个结果项调用 toString()
方法。
我能想到的最简单的解决方法是在 Python 中为 "janusgraph:RelationIdentifier" 编写自己的反序列化器,然后将其添加到您正在使用的 GraphSON 版本的 list of deserializers .我没有测试过这个,但我想代码看起来像:
class RelationIdentifierJanusDeserializer(_GraphSONTypeIO):
graphson_type = "janusgraph:RelationIdentifier"
@classmethod
def objectify(cls, d, reader):
return str(d)
这是一个演示如何添加自定义序列化程序以及如何覆盖序列化程序的测试: