Overview

VIVO stores its information in graphs – named collections of triples.  Graphs keep data organized by kind, and provide the opportunity for different access rights and management practices to be applied at the graph level.  All graphs are available to the VIVO SPARQL query interface.  When using SPARQL to query the VIVO data, one does not need to know the graph the data is contained in.  Triples in all graphs are available to the query.  When updating data in VIVO using CONSTRUCT or UPDATE, knowledge of the graph may be necessary.

Here we show how to list the graphs in a VIVO, and provide a reference for the purpose of each graph.

Listing the graphs used by VIVO

To list the graphs being used by your VIVO, you can run the SPARQL query shown below.  Caution:  If you have a significant amount of data in your VIVO, the query may take quite a while to run.  With tens of thousands of entities in your VIVO, the query should complete in a few minutes.

SELECT ?g
WHERE
{
    GRAPH ?g {
        ?s ?p ?o .
    }
}
GROUP BY ?g
ORDER BY ?g

To list the triples in a named graph, use the query below, substituting the name of the graph you wish to list.  Caution:  listing the triples in larger graphs may take significant time.

SELECT ?s ?p ?o
WHERE
{
    GRAPH <http://vitro.mannlib.cornell.edu/filegraph/tbox/sameAs.n3> {
        ?s ?p ?o .
    }
}

The graphs used by VIVO

Graph nameContents
http://vitro.mannlib.cornell.edu/default/asserted-tboxAll ontology triples as asserted
http://vitro.mannlib.cornell.edu/default/inferred-tboxTriples infered from the asserted ontology triples
http://vitro.mannlib.cornell.edu/default/vitro-kb-2The main triple store for content
http://vitro.mannlib.cornell.edu/default/vitro-kb-applicationMetadataTriples controlling the application
http://vitro.mannlib.cornell.edu/default/vitro-kb-infTriples inferred from the main triple store
http://vitro.mannlib.cornell.edu/filegraph/abox/academicDegree.rdfData provided regarding Academic Degrees
http://vitro.mannlib.cornell.edu/filegraph/abox/continents.n3Data provided regarding the continents
http://vitro.mannlib.cornell.edu/filegraph/abox/dateTimeValuePrecision.owlData provided regarding date time precisions
http://vitro.mannlib.cornell.edu/filegraph/abox/documentStatus.owlData provided regarding document statuses
http://vitro.mannlib.cornell.edu/filegraph/abox/geopolitical.abox.ver1.1-11-18-11.owlData provided regarding geopolitical entities
http://vitro.mannlib.cornell.edu/filegraph/abox/us-states.rdfData provided regarding US states and territories
http://vitro.mannlib.cornell.edu/filegraph/abox/validation.n3Data regarding validation states
http://vitro.mannlib.cornell.edu/filegraph/abox/vocabularySource.n3Data provided regarding vocabulary sources
http://vitro.mannlib.cornell.edu/filegraph/tbox/ontologies.owlDescriptions of the ontologies used in VIVO
http://vitro.mannlib.cornell.edu/filegraph/tbox/vitro-0.7.owlOntology assertions for the Vitro application, internal
http://vitro.mannlib.cornell.edu/filegraph/tbox/vitroPublic.owlOntology assertions for the Vitro application, public. Defines files and file types
http://vitro.mannlib.cornell.edu/filegraph/tbox/vivo.owlThe VIVO Ontology


Notes

  1. Graphs named "default" are built and managed by the Vitro application.  Graphs names "filegraph" are loaded from files when VIVO starts.  Graphs named "filegraph/abox" are data.  Graphs named "filegraph/tbox" are ontology.
  2. filegraph graphs are named with the name of the file they were loaded from.
  3. filegraph files may be in several formats.  You will see graphs loaded from files with type n3, owl and rdf.
  4. The content in some of the filegraphs may repeat content found in other filegraphs.  This does not impact the application.
  5. Data you load by placing a file in filegraph/abox will appear as a result of the graph listing query above.