私はNeo4J REST APIを調べていて、問題に遭遇しました。
私は次の体でPOST
toを行います:http://localhost:7474/db/data/cypher
{
"query": "CREATE (n {name: {name}, description: {description}})",
"params": {
"name": "Test"
}
}
400 Bad Request
次の本体を持つ を返します。
{
"message": "Expected a parameter named description",
"exception": "ParameterNotFoundException",
"fullname": "org.neo4j.cypher.ParameterNotFoundException",
"stacktrace": [
...
]
}
description
パラメータをオプションにするにはどうすればよいですか?