Skip to content

Instantly share code, notes, and snippets.

@balkian
Last active August 29, 2015 14:23
Show Gist options
  • Save balkian/dfd1fbc0c7e65e5e7634 to your computer and use it in GitHub Desktop.
Save balkian/dfd1fbc0c7e65e5e7634 to your computer and use it in GitHub Desktop.
Look for demonyms in dbpedia
select distinct ?a ?b where {?a <http://dbpedia.org/ontology/demonym> ?b} LIMIT 100
select distinct ?country
where {
?country <http://dbpedia.org/ontology/demonym> ?dem
FILTER regex(?dem, "^Spanish")
} LIMIT 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment