0
這是一個newo4j REST API調用相關的錯誤 - 從我的Java代碼,我通過傳遞查詢,參數,查詢作出REST API調用遠程的Neo4j數據庫正在執行如下Neo4j的REST API調用錯誤 - 錯誤讀數JSON'
*MERGE (s:Sequence {name:'CommentSequence'}) ON CREATE SET s.current = 1 ON MATCH SET s.current=s.current+1 WITH s.current as sequenceCounter MERGE (cmnt01:Comment {text: {text}, datetime:{datetime}, type:{type}}) SET cmnt01.id = sequenceCounter WITH cmnt01 MATCH (g:Game {game_id:{gameid}}),(b:Block {block_id:{bid}, game_id:{gameid}}),(u:User {email_id:{emailid}}) MERGE (b)-[:COMMENT]->(cmnt01)<-[:COMMENT]-(u)*
基本上這個查詢是在運行時生成的序列號,並設置註釋節點,因爲這順序號的「CommentId」屬性註釋節點附接至一個博弈的塊即對於每一個前評論通過我添加一個序列號,因爲它的ID的用戶加入。
這是工作的情況下,近90%,但也有情侶在一天的情況下,當它失敗,下面的錯誤
ERROR com.exectestret.dao.BaseGraphDAO - Query execution error:**Error reading as JSON ''**
爲什麼Neo4j的查詢不返回任何正確的錯誤代碼?它只是說錯誤閱讀爲JSON''。
Neo4j的版本是
Neo4j Community Edition 2.2.1
感謝, Deepesh
也增加,在pom.xml的依賴是最新的一個,即 \t \t \t org.neo4j \t \t \t Neo4j的休息,graphdb \t \t \t 2.0.1 \t \t 回購如下 \t <庫> \t \t \t \t \t MVN-Neo4j的 \t \t \t http://m2.neo4j.org/content/groups/everything \t \t \t儲存庫> 搜索沒有淨的各種職位,但仍無法找到任何關於此問題正確的信息。 –
deepesh