Versions Compared

Key

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

Table of Contents

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

...

publications by type

Run the following SPARQL CONSTRUCT queries to retrieve the triples associated with the dataentities:

Article

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

Book

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

Case Study

No Formatcode
construct {
     	?s ?p ?o .
} where {
     ?s rdf:type corevivo:CaseStudy .
     ?s ?p ?o  .
}

Conference Paper

No Formatcode
construct {
     	?s ?p ?o .
} where {
     ?s rdf:type corevivo:ConferencePaper .
     ?s ?p ?o  .
}

Editorial Article

No Formatcode
construct {
     	?s ?p ?o .
} where {
     ?s rdf:type corevivo:EditorialArticle .
     ?s ?p ?o  .
}

Proceedings

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

Review

No Formatcode
construct {
     	?s ?p ?o .
} where {
     ?s rdf:type corevivo:Review .
     ?s ?p ?o  .
}

Academic Article

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

Remove Other Entities

Journal

No Formatcode
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 .
}