Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Neographyv0.0.23でパラメーター化されたCypherクエリを実行しようとしています。
パラメータ化されていないバージョンは機能しますが、次のようになります。
Neo.execute_query( "start n = node(3)return n") =>{"データ"=>[[{...。
パラメータ化されたバージョンは機能しません:
Neo.execute_query( "start n = node(id)return n"、{:id => 3}) =>nil
パラメータ名を中括弧で囲んだ「start n=node({id}) return n」を使用してみてください。