I'm making that SPARQL
query:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?label WHERE {
<http://pt.dbpedia.org/resource/Brasil> rdfs:label ?label.}
and I don't get any results for ?text
. I checked that URI on my browser and found the rdfs:label
property there. Is that problem caused by the URI form http://pt.dbpedia.org/
?
I've already used the same query with IRIs starting with http://dbpedia.org/resource/
, e.g., http://dbpedia.org/resource/Google
and those work. I'm using Jena, and can provide code showing how I'm dereferencing the IRI.