Versions Compared

Key

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

...

To remove data from VIVO, run SPARQL queries to retrieve the data in RDF. Then go to Site Administration -> Advanced Data Tools -> Add or Remove RDF Data to upload the RDF file to remove the data.

Children Display

Examples

Remove all publications

Run the following SPARQL queries to retrieve the data:

Article

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type bibo:Article .
     ?s ?p ?o  .
}

Book

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type bibo:Book .
     ?s ?p ?o  .
}

Case Study

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type core:CaseStudy .
     ?s ?p ?o  .
}

Conference Paper

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type core:ConferencePaper .
     ?s ?p ?o  .
}

Editorial Article

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type core:EditorialArticle .
     ?s ?p ?o  .
}

Proceedings

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type bibo:Proceedings .
     ?s ?p ?o  .
}

Review

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type core:Review .
     ?s ?p ?o  .
}

Academic Article

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type bibo:AcademicArticle .
     ?s ?p ?o  .
}

Journal

No Format

construct {
     	?s ?p ?o .
} where {
     ?s rdf:type bibo:Journal .
     ?s ?p ?o  .
}

Authorship

No Format

construct {
        ?agent core:authorInAuthorship ?authorship .
        ?authorship ?p ?o .
} where {
        ?agent core:authorInAuthorship ?authorship .
        ?authorship ?p ?o .
}