i have problem with qualifiers in SPARQL.
I have this query:
SELECT ?title ?item ?date ?place WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
?item wdt:P161 wd:Q38111.
?item wdt:P1476 ?title.
?item wdt:P577 ?date.
# how add ?place, aka place of publication in P577 of current movie
}
This query shows me movies, where is included Leonardo diCaprio as actor. I want to add another column named "place", which means "place of publication". This place of publication is qualifier of property P577 (date of publication of movie).
Have anybody clue how to do it. Thanks for any advices.