i am new to wikidata and i have tried to query query the start/ end dates of the commander of the kz dachau using sparql. I have following code but i don't get any data.
SELECT ?KZ_Dachau ?start ?end ?name
WHERE
{?KZ_Dachau p:P1037 ?leiter.
?leiter ps:P1037 wd:Q151198;
pq:P580 ?start;
pq:P582 ?end.
?KZ_Dachau wdt:P1559 ?name. }
a similar query, on which my query based, works fine:
SELECT ?papst ?start ?end ?name ?pic
WHERE
{?papst p:P39 ?position.
?position ps:P39 wd:Q19546;
pq:P580 ?start;
pq:P582 ?end.
?papst wdt:P1559 ?name.}
what i doing wrong?
I think my approach is wrong, but i don't know how to resolve it :/ And i dont understand, why i can't select any properties of the entity kz dachau (Q151198).