2

AnormCypher doc は、Stream API を使用してデータを取得する方法の例を提供します: http://anormcypher.org/

「リターン クエリの結果にアクセスする最初の方法は、Stream API を使用することです。

任意の Cypher ステートメントで apply() を呼び出すと、CypherRow インスタンスの遅延ストリームを受け取ります。ここで、各行は辞書として見ることができます。

 // Create Cypher query
 val allCountries = Cypher("start n=node(*) where n.type = 'Country' return n.code as code, n.name as name")

 // Transform the resulting Stream[CypherRow] to a List[(String,String)]
 val countries = allCountries.apply().map(row => 
   row[String]("code") -> row[String]("name")
 ).toList

次のCypherクエリでパスを取得するために同じアプローチを使用しようとしています:

MATCH p = (n {id: 'n5'})-[*]-(m) RETURN p;

それでも、このコードを実行すると:

Cypher("MATCH p = (n {id: 'n5'})-[*]-(m) RETURN p;")().map {row  =>
  println(row[Option[org.anormcypher.NeoRelationship]]("p"))
}

例外が発生します(以下を参照)。CypherRowこの場合、パス情報を取得するにはどうすればよいですか?

 Exception in thread "main" java.lang.RuntimeException: TypeDoesNotMatch(Unexpected type while building a relationship)
    at org.anormcypher.MayErr$$anonfun$get$1.apply(Utils.scala:21)
    at org.anormcypher.MayErr$$anonfun$get$1.apply(Utils.scala:21)
    at scala.util.Either.fold(Either.scala:97)
    at org.anormcypher.MayErr.get(Utils.scala:21)
    at org.anormcypher.CypherRow$class.apply(AnormCypher.scala:303)
    at org.anormcypher.CypherResultRow.apply(AnormCypher.scala:309)
    at bigdata.test.n4j.Simple$$anonfun$main$1.apply(Simple.scala:31)
    at bigdata.test.n4j.Simple$$anonfun$main$1.apply(Simple.scala:29)
    at scala.collection.immutable.Stream.map(Stream.scala:376)
    at bigdata.test.n4j.Simple$.main(Simple.scala:29)
4

1 に答える 1