Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wsalesky
Created May 14, 2018 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsalesky/216ba08995956b4916e33c2707a22cf6 to your computer and use it in GitHub Desktop.
Save wsalesky/216ba08995956b4916e33c2707a22cf6 to your computer and use it in GitHub Desktop.
Get SPEAR sources
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