SPARQL Endpoint

Query CaLiGraph with SPARQL

Run queries on our SPARQL endpoint to explore the details of CaLiGraph.

Query with SPARQL
This query retrieves all triples about an instance with a given label:
SELECT *
WHERE {
    ?s rdfs:label "Harry Potter" ;
    ?p ?o .
}
This query retrieves all baroque architects:
SELECT ?s
WHERE {
    ?s a clgo:Baroque_architect .
}
This query retrieves all companies having their headquarter in London:
SELECT ?s
WHERE {
    ?s a clgo:Company ;
    clgo:headquarter clgr:London .
}