Hello,
According to the Neo4j REST API to set a property on a node I send a PUT request to the node's property URL e.g. http://localhost:7474/db/data/node/5/properties/{propertyname}. This api accepts a JSON object. How do I send a json object that has property name and value? The sample in the document shows the body of PUT is just a string while the property name is in the URL. Is it correct that the API should be http://localhost:7474/db/data/node/5/properties and the body has an JSONObject e.g. {"propertyName":"propertyValue"} ? If so then what is the difference between setting property and updating property ? Thanks, _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

