query-bd1d7051d71a8ac7c23d63efe31a46c2

rq turtle/ttl

title: Library buildings in the DACH region SELECT DISTINCT ?item ?itemLabel WHERE { VALUES ?country {wd:Q40 wd:Q39 wd:Q183} ?item (wdt:P31/(wdt:P279*)) wd:Q856584; wdt:P17 ?country. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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#>
#title: Library buildings in the DACH region
SELECT DISTINCT ?item ?itemLabel WHERE {
  VALUES ?country {wd:Q40 wd:Q39 wd:Q183}
  ?item (wdt:P31/(wdt:P279*)) wd:Q856584;
    wdt:P17 ?country.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?country") v2("?item"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q856584"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal bind0[/VALUES ?country/] bind0-->v1 bind00(["wd:Q40"]) bind00 --> bind0 bind01(["wd:Q39"]) bind01 --> bind0 bind02(["wd:Q183"]) bind02 --> bind0 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P17"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end