This is supposed to bring back a list of trees, and optional a thumbnail picture.
By 'trees' I mean the green, leafy plants:
PREFIX gold: <http://purl.org/linguistics/gold/>
PREFIX dbr: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT * {
?tree a dbo:Plant;
gold:hypernym dbr:Tree.
OPTIONAL { ?tree dbo:thumbnail ?thumbnail }
}
Click here to run that SPARQL above.
It mostly works: but it also brings back this type of Tree:
https://dbpedia.org/page/M-ary_tree
Oddly: the data isn't apparently labelled as being a 'dbo:Plant' though?
Is there something else going on here? (like it being 'sameAs' or something? I notice the result actually says 'http://dbpedia.org/resource/K-ary_tree', but this lands on 'M-aray').
Thanks to uninformeduser - who provided the explanation in the comments. I can confirm the explanation was correct.
The page does indeed redirect with a HTTP-301 :
And the provided SPARQL does show the entry is (incorrectly) classified as a plant:
Run SPARQL1
I'm still a little confused about this behaviour - since the redirect seems to be invisible at the RDF level to the end-user - the redirect just seems to happen. (Unless I'm missing some connection somewhere else).
So asking whether 'K-Array' is a plant yields yes, but the original 'M-Array' is false.
Run SPARQL2: