Versions Compared

Key

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


Excerpt

When viewing a Glossary 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 make changes in the properties of the current resource, simply move to simply insert your SPARQL at 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:

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


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

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


Example (multiple statements): Insert Update the inserted dc:title  "My Test Title" to and then Delete dc:title "My Test Title":

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

More Information