Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

When viewing a node resource 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 update.

 

To add a new property to the current object or update existing propertiesresource, 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 object or datastreamresource:

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

 

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

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

...

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

...