2019-10-09 14:38:10 +01:00
|
|
|
select ?item ?itemLabel ?image ?artist ?artistLabel ?title ?titleLang ?time ?timeprecision {
|
|
|
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
|
2019-11-25 13:46:25 +00:00
|
|
|
VALUES ?isa { {% for isa in isa_list %} wd:{{ isa }} {% endfor %} }
|
|
|
|
|
|
|
|
?item wdt:P31 ?isa .
|
2019-10-09 14:38:10 +01:00
|
|
|
{% for pid, qid in params %}
|
|
|
|
?item wdt:{{pid}} wd:{{qid}} .
|
|
|
|
{% endfor %}
|
|
|
|
?item wdt:P18 ?image .
|
|
|
|
OPTIONAL {
|
|
|
|
?item p:P571/psv:P571 ?timenode .
|
|
|
|
?timenode wikibase:timeValue ?time.
|
|
|
|
?timenode wikibase:timePrecision ?timeprecision.
|
|
|
|
}
|
|
|
|
OPTIONAL {
|
|
|
|
?item wdt:P1476 ?title .
|
|
|
|
BIND(LANG(?title) as ?titleLang)
|
|
|
|
}
|
|
|
|
OPTIONAL { ?item wdt:P170 ?artist }
|
|
|
|
}
|