query-09637ccd86315b65154a9deb6fdd4794
Plays by Swiss Playwrights
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#>
SELECT DISTINCT ?play ?playLabel ?author ?authorLabel
WHERE {
?play wdt:P31/wdt:P279* wd:Q25379 ;
wdt:P50 ?author .
?author wdt:P27 wd:Q39 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}
Query found at
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Atelier_2018
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2019-05-13
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2019-08-21
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2019-09-26
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2020-08-25
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2020-11-16
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD_Intro_Swiss_National_Library_2018
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?author"):::projected
v1("?play"):::projected
a1((" "))
c6(["wd:Q39"]):::iri
c3(["wd:Q25379"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c8(["bd:serviceParam"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P50"--> v2
v2 --"wdt:P27"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end