nebula3-python的match查询结果,edge方向反了

python库版本:nebula3-python==3.1.0
python版本:Python 3.7.7
nebula版本:3.1.0

查询语句
MATCH (v)-[e]->(v2) where id(v2) in [“entity_phone_card_type-17278244601”] return v,e,v2

预期结果是dst为entity_phone_card_type-17278244601

python执行结果

{
	'meta': [{
		'type': 'vertex',
		'id': 'entity_certificate_type-attr_passport_type-EF1025359'
	}, {
		'type': 'edge',
		'id': {
			'ranking': 0,
			'type': -407,
			'dst': 'entity_certificate_type-attr_passport_type-EF1025359',
			'src': 'entity_phone_card_type-17278244601',
			'name': 'edge_person_asset'
		}
	}, {
		'type': 'vertex',
		'id': 'entity_phone_card_type-17278244601'
	}],
	'row': [{
		'entity_certificate_type.status': 'normal',
		'entity_certificate_type.create_time': 1662537368,
		'entity_certificate_type.update_time': 1662537368,
		'entity_certificate_type.cer_type': 'attr_passport_type',
		'entity_certificate_type.cer_number': 'EF1025359'
	}, {
		'main_category': 'phone',
		'source': 'bankcard',
		'sub_category': 'phone'
	}, {
		'entity_phone_card_type.status': 'normal',
		'entity_phone_card_type.update_time': 1662544709,
		'entity_phone_card_type.phone': '17278244601',
		'entity_phone_card_type.create_time': 1662544709,
		'entity_phone_card_type.imsi': ''
	}]
}		

这个结果是正常的吗

边的类型为负数表示反向

此话题已在最后回复的 7 天后被自动关闭。不再允许新回复。