query-2130f7aec9969fb75d43124125ca3304
title: People working in libraries in the DACH region SELECT DISTINCT ?item ?itemLabel WHERE { VALUES ?country {wd:Q40 wd:Q39 wd:Q183} ?item wdt:P108 ?employer. ?employer (wdt:P31/(wdt:P279*)) wd:Q7075; wdt:P17 ?country. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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#>
#title: People working in libraries in the DACH region
SELECT DISTINCT ?item ?itemLabel WHERE {
VALUES ?country {wd:Q40 wd:Q39 wd:Q183}
?item wdt:P108 ?employer.
?employer (wdt:P31/(wdt:P279*)) wd:Q7075;
wdt:P17 ?country.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
- https://www.wikidata.org/wiki/User:Jean-Fr%C3%A9d%C3%A9ric/Austria_contest_ideas_ter
- https://www.wikidata.org/wiki/Wikidata:Tenth_Birthday/DACH_Culture_Contest/queries
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?country")
v3("?employer")
v2("?item"):::projected
a1((" "))
c4(["wd:Q7075"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#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:P108"--> v3
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
v3 --"wdt:P17"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end