Created
May 14, 2018 18:07
-
-
Save wsalesky/216ba08995956b4916e33c2707a22cf6 to your computer and use it in GitHub Desktop.
Get SPEAR sources
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
prefix lawd: <http://lawd.info/ontology/> | |
prefix skos: <http://www.w3.org/2004/02/skos/core#> | |
prefix dcterms: <http://purl.org/dc/terms/> | |
SELECT ?source ( count(?source) as ?sourceCount ) | |
WHERE { | |
?s dcterms:source ?source; | |
dcterms:isPartOf <http://syriaca.org/spear>. | |
} | |
GROUP BY ?source | |
LIMIT 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment