2013-11-20 62 views
2

當我運行密碼查詢時,返回下面的結果。我試圖只返回數據,沒有其他所有的東西,比如outgoing_relationships,self和traverse。neo4j只返回數據

"labels": "http://localhost:7474/db/data/node/61/labels", 
    "outgoing_relationships": "http://localhost:7474/db/data/node/61/relationships/out", 
    "traverse": "http://localhost:7474/db/data/node/61/traverse/{returnType}", 
    "all_typed_relationships": "http://localhost:7474/db/data/node/61/relationships/all/{-list|&|types}", 
    "property": "http://localhost:7474/db/data/node/61/properties/{key}", 
    "self": "http://localhost:7474/db/data/node/61", 
    "properties": "http://localhost:7474/db/data/node/61/properties", 
    "outgoing_typed_relationships": "http://localhost:7474/db/data/node/61/relationships/out/{-list|&|types}", 
    "incoming_relationships": "http://localhost:7474/db/data/node/61/relationships/in", 
    "extensions": {}, 
    "create_relationship": "http://localhost:7474/db/data/node/61/relationships", 
    "paged_traverse": "http://localhost:7474/db/data/node/61/paged/traverse/{returnType}{?pageSize,leaseTime}", 
    "all_relationships": "http://localhost:7474/db/data/node/61/relationships/all", 
    "incoming_typed_relationships": "http://localhost:7474/db/data/node/61/relationships/in/{-list|&|types}" 
    "data": {}, 

如何僅返回數據?

+0

你在使用REST接口進行Cypher查詢嗎? –

回答