query-ae6f2f92391780f4bc59ad38037dc312

rq turtle/ttl

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". } } ORDER BY ?cLabel

Use at

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". }
}
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