I have my default graph and I need to extend the data using DBpedia.
I have mapped all instances from my data with their respective URIs from DBpedia, using owl:sameAs
property.
This query returns all the owl:sameAs
data:
(My endpoint: http://dydra.com/brunopenteado/br_municipalities/@query)
select *
where
{
?mun owl:sameAs ?db .
}
limit 10
Now I want to query the rdfs:label
from DBpedia using my data.
How can I build a query that reads my data and extends to DBpedia properties as well?
I tried a query like this, but no results are returned.
select *
from <http://dydra.com/brunopenteado/br_municipalities/sparql>
from <http://pt.dbpedia.org/sparql>
where
{
?mun owl:sameAs ?dbp .
?dbp rdfs:label ?name
}
limit 10