Versions Compared

Key

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

...

Code Block
titlecreate object
curl -X POSTPATCH -H "Content-Type: application/sparql-update" --data-binary "@object.rdf" "http://localhost:8080/rest/indexableObject"

object.rdf:

PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX indexing: <http://fedora.info/definitions/v4/indexing#>
 
DELETE { }
INSERT { 
  <> indexing:hasIndexingTransformation "default"; 
  rdf:type indexing:indexable; 
  dc:title "This title will show up in the index." }
WHERE { }