I'm doing a SPARQL query on the DBpediaset, but I am having some issues (due to lack of detailed SPARQL knowledge) with a query limitation:
I first 'get' all music artists:
?person rdf:type <http://dbpedia.org/ontology/MusicalArtist> .
But I want to limit this to the broader category Category:American_musicians
(via traversing skos:broader
?): how?
*= while the question is specific, I've encountered this quest many times when wanting to running sparql queries.