我指的是"使用参数设置所有属性"本页的文档部分:http://neo4j.com/docs/stable/query-set.html
它说我可以使用json格式设置节点的所有属性,如下所示:
MATCH (n { name: 'Andres' })
SET n = { props }
RETURN n
查询:
result = Braintree::PaymentMethod.create(
:customer_id => "131866",
:payment_method_nonce => nonce_from_the_client
)
这在密码中不起作用。这仅适用于RESTful API吗?具体来说,我正在通过Python应用程序进行密码查询。
答案 0 :(得分:2)
任何Python客户端都应支持传入参数字典以设置所有属性。在py2neo中,例如:
"what's up"