Skip to content

Instantly share code, notes, and snippets.

@ewg118
Created May 13, 2015 02:58
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 ewg118/8ff575266b7dd1faf114 to your computer and use it in GitHub Desktop.
Save ewg118/8ff575266b7dd1faf114 to your computer and use it in GitHub Desktop.
UNION list of gold and silver coins (limited to 100)
PREFIX nm: <http://nomisma.org/id/>
PREFIX nmo: <http://nomisma.org/ontology#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT ?objects WHERE {
{ ?types nmo:hasMaterial nm:ar }
UNION { ?types nmo:hasMaterial nm:av }
?types dcterms:source nm:rrc .
?objects nmo:hasTypeSeriesItem ?types ;
a nmo:NumismaticObject
} LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment