Vocabs SPARQL
A service to query all published vocabularies in Vocabs repository run by ACDH
Example queries
SELECT * {?s ?p ?o}
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT ?clabel ?external_concept
WHERE { ?concept a skos:Concept;
skos:prefLabel ?clabel;
skos:narrowMatch ?external_concept.
FILTER (LANG(?clabel)="en")
}
Results
Credits: SPARQL endpoint interface is built with YASGUI package.