mirror of
https://github.com/balkian/gists.git
synced 2024-10-31 23:51:44 +00:00
5 lines
132 B
SPARQL
5 lines
132 B
SPARQL
select distinct ?country
|
|
where {
|
|
?country <http://dbpedia.org/ontology/demonym> ?dem
|
|
FILTER regex(?dem, "^Spanish")
|
|
} LIMIT 5 |