I'm using DBpedia public endpoint http://dbpedia.org/sparql, but I suspect that it sets a limit on the number of results it returns. I'm not sure, and just want to confirm. For example, for these two queries:
select distinct ?property
where {
?property <http://www.w3.org/2000/01/rdf-schema#domain> <http://dbpedia.org/ontology/Person> .
}
select distinct ?property
where {
?instance a <http://dbpedia.org/ontology/Person> .
?instance ?property ?obj .
}
I would expect the second one return much more results than the first one because although they are all asking for the properties of "Person", the second one retrieves properties that are not explicit in the schema. But weirdly, the second one only returns one result. I'm wondering if the endpoint is setting a limit on the result it returns and how do I change this limit. Do I really need to set up my local instance of DBpeida if I want to retrieve the complete information?