Last active
August 29, 2015 14:21
-
-
Save ewg118/8161a9e118f3b8803a97 to your computer and use it in GitHub Desktop.
Filter by English label
This file contains 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 nm: <http://nomisma.org/id/> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
SELECT ?label WHERE { | |
nm:rome skos:prefLabel ?label . | |
FILTER langMatches( lang(?label), "en" ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment