I\'m trying to get all types from DBpedia using this SPARQL query:
select ?type { ?type a owl:Class . }
Now, I want to also include the
Try this:
SELECT ?type (STR(?l) AS ?label) { ?type a owl:Class; rdfs:label ?l . FILTER (LANG(?l) = "en") }