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.

...

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 { }

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

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

More Information