Archived

If you are looking for the last documentation in the 4.x series, see 4.7.5. Looking for another version? See all documentation.

When viewing a resource, you can add or delete properties using the "Update Properties" form.

The form is conveniently pre-populated with registered namespaces and a skeleton SPARQL update.

To add a new property to the current resource, simply move to the bottom of the form and type in the SPARQL, then click the Update button.

Example: Add a dc:title property to the current resource:

INSERT {<> dc:title "My Title" .}
WHERE { }

Example: Delete the inserted dc:title "My Title":

DELETE {<> dc:title "My Title" .}
WHERE { }

Update the inserted dc:title "My Title" to "My Test Title":

INSERT {<> dc:title "My Test Title" .} WHERE { };
DELETE {<> dc:title "My Title" .}
WHERE { }

More Information

  • No labels