Skip to content

Instantly share code, notes, and snippets.

@ewg118
Created June 30, 2022 14:22
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/9a587212964436098a47c85b8fa58faf to your computer and use it in GitHub Desktop.
Save ewg118/9a587212964436098a47c85b8fa58faf to your computer and use it in GitHub Desktop.
Esty: Get unique obverse dies d for coin type
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX nm: <http://nomisma.org/id/>
PREFIX nmo: <http://nomisma.org/ontology#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT (count(DISTINCT ?die) as ?count) WHERE {
?object nmo:hasTypeSeriesItem <http://numismatics.org/crro/id/rrc-336.1c> .
GRAPH <http://nomisma.org/editor/rschaefer> {
?object nmo:hasObverse/nmo:hasDie/rdf:value ?die
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment