0

私は生のcurl/phpを使用してREST APIにいくつかのリクエストを行っています.APIはたくさんのURLを返します...データが欲しいだけです! その動作を無効にする方法はありますか?

サーバーは、リクエストごとに約 2.8MB を返しています。

例: $request

{"query" : "START user = node(1) MATCH (user)<-[:TEST_PYRAMID_15x15x15_NOT_UNIQUE_II]-(friend)  return distinct friend limit 1","params" : { }}

PHP

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Accept:  application/json; charset=UTF-8","Content-length: ".strlen($request)));
curl_setopt($ch,CURLOPT_POSTFIELDS, $request);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
curl_close($ch);

応答:

 {
  "columns" : [ "friend" ],
  "data" : [ [ {
    "paged_traverse" : "http://localhost:7474/db/data/node/366/paged/traverse/{returnType}{?pageSize,leaseTime}",
    "outgoing_relationships" : "http://localhost:7474/db/data/node/366/relationships/out",
    "data" : {
      "fbfullname" : "NAME",
      "fbid" : "6969696969696969"
    },
    "all_typed_relationships" : "http://localhost:7474/db/data/node/366/relationships/all/{-list|&|types}",
    "traverse" : "http://localhost:7474/db/data/node/366/traverse/{returnType}",
    "self" : "http://localhost:7474/db/data/node/366",
    "all_relationships" : "http://localhost:7474/db/data/node/366/relationships/all",
    "property" : "http://localhost:7474/db/data/node/366/properties/{key}",
    "outgoing_typed_relationships" : "http://localhost:7474/db/data/node/366/relationships/out/{-list|&|types}",
    "properties" : "http://localhost:7474/db/data/node/366/properties",
    "incoming_relationships" : "http://localhost:7474/db/data/node/366/relationships/in",
    "incoming_typed_relationships" : "http://localhost:7474/db/data/node/366/relationships/in/{-list|&|types}",
    "extensions" : {
    },
    "create_relationship" : "http://localhost:7474/db/data/node/366/relationships"
  } ] ]
}

特定のプロパティを要求すると、neo4j がその部分だけを返すことはわかっていますが、事前にプロパティを知ることはできません。「ex return friend.fbid」

4

1 に答える 1