query-ddf959d842bd7210ec28060e9c0a8eda
shows al artworks from a specific museum with their creator and his/hers date of death SELECT DISTINCT ?p ?pLabel ?c ?cLabel ?dod WHERE { ?p wdt:P195 wd:Q1471477. ?p wdt:P170 ?c. ?c wdt:P570 ?dod. SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,en". } OPTIONAL { } } ORDER BY ?cLabel
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#shows al artworks from a specific museum with their creator and his/hers date of death
SELECT DISTINCT ?p ?pLabel ?c ?cLabel ?dod WHERE {
?p wdt:P195 wd:Q1471477.
?p wdt:P170 ?c.
?c wdt:P570 ?dod.
SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,en". }
OPTIONAL { }
}
ORDER BY ?cLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?c"):::projected
v1("?cLabel"):::projected
v4("?dod"):::projected
v2("?p"):::projected
c6(["bd:serviceParam"]):::iri
c8(["nl,en"]):::literal
c2(["wd:Q1471477"]):::iri
v2 --"wdt:P195"--> c2
v2 --"wdt:P170"--> v3
v3 --"wdt:P570"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
end