Old Release

This documentation covers an old version of Fedora. Looking for another version? See all documentation.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

When viewing a resource a form is presented that allows you to add or delete properties.

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