mirror of
https://github.com/balkian/gists.git
synced 2024-11-01 08:01: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
|