this is a simple query by using sparql in dbpedia.
prefix dct:<http://purl.org/dc/terms/>
select ?x
where { ?x dct:subject <http://dbpedia.org/resource/Category:Cycle_racing_by_country>
}
or
prefix dbc:<http://dbpedia.org/resource/Category:>
prefix dct:<http://purl.org/dc/terms/>
select ?x
where { ?x dct:subject dbc:Cycle_racing_by_country.
}
it does not return any values.
so how to query http://dbpedia.org/page/Category:Cycle_racing_by_country and get its data?