Research Article

Seamless Integration of RESTful Services into the Web of Data

Listing 6

Examplary DELETE/INSERT operation.
1 DELETE {
2 ?per so:gender ?gender.
3 }
4 INSERT {
5  ?per so:gender "female".
6 }
7 WHERE {
8  ?per a so:Person;
9  so:name "Lady Gaga";
10   so:birthDate "1986-03-28";
11   so:gender ?gender.
12 }