Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eyssette/62baa1c7c3d62c7493b81a0fcb7a01c0 to your computer and use it in GitHub Desktop.
Save eyssette/62baa1c7c3d62c7493b81a0fcb7a01c0 to your computer and use it in GitHub Desktop.
Recherche des domaines et thématiques associés à la philosophie sur IdRef
SELECT DISTINCT ?uri1 ?label1 ?uri2 ?label2 COUNT (distinct ?doc2) as ?nbdoc2
WHERE {
<http://www.idref.fr/027295206/id> skos:narrower ?uri1.
?uri1 skos:prefLabel ?label1.
OPTIONAL {
?uri1 skos:narrower ?uri2.
?uri2 skos:prefLabel ?label2.
?doc2 dcterms:subject ?uri2.
} } ORDER BY ?label1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment