I've recently dived in the world of semantic web. It's been smooth, until now. To the point... I'm trying to get Articles from dbpedia, but I don't get results somehow. For what I have seen in the DBpedia ontology, I think this is supposed to be correct. Article is a "subclass" of WrittenWork, so is Book. I can get books and their info through the rdf triples. When using a SPARQL query that is almost the same as the one for books, I don't get results. This is weird, because I know there are references to articles in Wikipedia.
The query for books:
SELECT DISTINCT ?book
WHERE { ?book a dbo:Book . }
If I substitute dbo:Book for dbo:Article, I get nothing. I'm testing here: http://dbpedia.org/sparql
Can someone point me the right direction?
dbo:? - scotthenninger