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 6 Next »

When viewing a node a form is presented that allows you to update, add, alter or delete any node properties.

 

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

 

To add a new property to the current object or update existing properties, simply move to the bottom of the form and type in the SPARQL, then click the Update button.

Add a dc:title property to the current object or datastream:

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

 

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