this is probably an easy one, and asked before but I couldnt find anything to help me on here or elsewhere online, man this syntax is messing with me!
I want to get subpropeties of a property.
so lets keep it simple with my man Bernie Sanders (Q359442), I can get all of his positions held (P39)...
SELECT ?position WHERE {
?person wdt:P39 ?position.
FILTER(?person = wd:Q359442)
}
that was easy enough, but how do I access all of the sub-data found within? Like start time (P580).
I've seen rdfs:subPropertyOf but no matter what I do with this all it does it give me zero results instead of 3!