Old Release

This documentation relates to an old version of VIVO, version 1.9.x. Looking for another version? See all documentation.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

General Method

To remove entities from VIVO, run SPARQL queries to retrieve the triples for the entities as RDF. Then go to Site Administration -> Advanced Data Tools -> Add or Remove RDF Data to upload the RDF to remove the triples for the entities.

Entities that are involved in relationships will need more attention.  The relationship involving the entity should also be removed.

Examples

Remove all publications

Run the following SPARQL queries to retrieve the data:

Article

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

Book

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

Case Study

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

Conference Paper

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

Editorial Article

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

Proceedings

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

Review

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

Academic Article

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

Journal

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

Authorship

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