0

我正在使用 neo4jrestclient 库。

from neo4jrestclient.client import GraphDatabase
from neo4jrestclient import client
from neo4jrestclient import query
gdb = GraphDatabase("http://localhost:7474/db/data/")
q = """MATCH n RETURN n;"""
result = gdb.query(q=q)
print(result[0])

当我执行查询“MATCH n RETURN n”时,输出为:

[{
'all_relationships': 'http://localhost:7474/db/data/node/1131/relationships/all', 
'all_typed_relationships': 'http://localhost:7474/db/data/node/1131/relationships/all/{-list|&|types}', 
'self': 'http://localhost:7474/db/data/node/1131', 
'labels': 'http://localhost:7474/db/data/node/1131/labels', 
'properties': 'http://localhost:7474/db/data/node/1131/properties', 
'create_relationship': 'http://localhost:7474/db/data/node/1131/relationships',
'outgoing_relationships': 'http://localhost:7474/db/data/node/1131/relationships/out', 
'data': {
  'title': 'title', 
  'name': 'Poludnie'
}, 
'incoming_typed_relationships': 'http://localhost:7474/db/data/node/1131/relationships/in/{-list|&|types}', 
'property': 'http://localhost:7474/db/data/node/1131/properties/{key}', 
'paged_traverse': 'http://localhost:7474/db/data/node/1131/paged/traverse/{returnType}{?pageSize,leaseTime}', 
'incoming_relationships': 'http://localhost:7474/db/data/node/1131/relationships/in', 
'outgoing_typed_relationships': 'http://localhost:7474/db/data/node/1131/relationships/out/{-list|&|types}', 
'traverse': 'http://localhost:7474/db/data/node/1131/traverse/{returnType}'}]

我看到节点的 id = 1131。问题是:我可以在没有这些链接的情况下以原始形式获得这个 id 吗?我想只有 id 和“数据”字段的值。

4

2 回答 2

1

要获取“仅 id 和数据,请将您的查询更改为:

MATCH (n) RETURN id(n), n.data

看看是否满意。

于 2014-09-29T14:50:46.027 回答
1

在 Cypher 中,可以这样表示:

MATCH (n) RETURN {id: ID(n), name: n.name, title: n.title} as city

在响应中,data散列将包含一个数组,每个元素的row键将包含使用给定键可访问的数据。

于 2014-09-29T14:51:37.083 回答