I am using the RDFS-Plus (Optimized) ruleset. According to this: https://docs.cambridgesemantics.com/anzograph/v2.2/userdoc/inferences.htm
If something is of type owl:Class
it should be inferred it is an rdfs:subClassof owl:Thing
.
If I run the query
PREFIX owl: <http://www.w3.org/2002/07/owl#>
select ?s ?p where {
?s ?p owl:Thing .
}
I only get results for when I have explicitly stated that a class is an rdfs:subClassOf owl:Thing
Can someone explain what I am missing and why this does not seem to work as expected?