How to add resource and specify related element?
问题 I have a simple API for a game tip website: /class is the endpoint for in game classes /tip is the endpoints for the tips /user is the endpoint for the users Each tip has 3 relations: (:User)-[:AUTHORED]-(:Tip) (:Class)<-[:FOR]-(:Tip) (:Class)<-[:AGAINST]-(:Tip) When I create a Tip using POST , I do'nt know how to add relations at the create time. I can do this way: Add relation to another node in SDN4 + REST after creating the resource, but I want to do it with only one query. EDIT: I tried