2013-11-20 5 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": {}, 

어떻게 데이터 만 반환 할 수 있습니까? 1.9에서

http://docs.neo4j.org/chunked/milestone/rest-api-transactional.html

방금 ​​대신 노드 나 관계의 개별 속성을 반환 할 수 있습니다, 만 원시 데이터가 반환됩니다

+0

REST 인터페이스를 사용하여 Cypher 쿼리를 수행하고 있습니까? –

답변

2

Neo4j 2.0 당신은 트랜잭션 나머지-엔드 포인트를 사용할 수 있습니다.

관련 문제