How can I resolve this problem?
Suppose that the application has the following relationship in a graph database:
Bob (vertex - id: 1) ------- knows (edge) --------> Mary (vertex - id: 2)
Bob (vertex - id: 1) ------- studies (edge) ----------> Mathematics (vertex - id: 3)
I have a servlet that is responsible for to do the relationship between the user (Bob) and matter (Mathematics ). This servlet receives two parameters from the web page, the user_id and matter_id, and handles the relationship "studies" between these two vertices. So the code of my html page is as follows:
<input name="user_id" value="1" /> // corresponds to Bob, because has the id = 1.
<input name="matter_id" value="3" /> // corresponds to Mathematics, because has the id = 3
We know that the user can manually change the value in your browser fields and make the matter_id equals 2. In this case the servlet will receive:
user_id = 1, which corresponds to Bob
matter_id = 2, which corresponds to Mary
The servlet will do the following relationship: Bob studies Mary.
In a relational database, we solved this problem with the use of foreign keys. How do we solve this consistency / security using the graphs database?