Skip to content

Instantly share code, notes, and snippets.

@ewg118
Created May 13, 2015 03:04
Show Gist options
  • Save ewg118/cb603f187f065acf1535 to your computer and use it in GitHub Desktop.
Save ewg118/cb603f187f065acf1535 to your computer and use it in GitHub Desktop.
Get a count of all silver coins associated with RRC types
PREFIX nm: <http://nomisma.org/id/>
PREFIX nmo: <http://nomisma.org/ontology#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT (count(?objects) as ?count) WHERE {
?types nmo:hasMaterial nm:ar ;
dcterms:source nm:rrc .
?objects nmo:hasTypeSeriesItem ?types ;
a nmo:NumismaticObject
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment