query-3ef15f17bf5a92e9c1c2d4c8c38df758
Ancient Greek tragedies and satyr plays
SELECT ?play ?authorLabel ?playLabel ?genreLabel ?title
WHERE {
?play wdt:P31 wd:Q25379 .
{ ?play wdt:P136 wd:Q34620 . }
UNION { ?play wdt:P136 wd:Q1050848 . }
?play wdt:P50 ?author .
?play wdt:P136 ?genre .
?play wdt:P1476 ?title .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,grc" }
} ORDER BY ?authorLabel
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#>
#Ancient Greek tragedies and satyr plays
SELECT ?play ?authorLabel ?playLabel ?genreLabel ?title
WHERE {
?play wdt:P31 wd:Q25379 .
{ ?play wdt:P136 wd:Q34620 . }
UNION { ?play wdt:P136 wd:Q1050848 . }
?play wdt:P50 ?author .
?play wdt:P136 ?genre .
?play wdt:P1476 ?title .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,grc" }
} ORDER BY ?authorLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?author")
v1("?authorLabel"):::projected
v4("?genre")
v2("?play"):::projected
v5("?title"):::projected
c2(["wd:Q25379"]):::iri
c11(["it,grc"]):::literal
c9(["bd:serviceParam"]):::iri
c5(["wd:Q1050848"]):::iri
c4(["wd:Q34620"]):::iri
v2 --"wdt:P31"--> c2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P136"--> c5
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P136"--> c4
end
union0r <== or ==> union0l
end
v2 --"wdt:P50"--> v3
v2 --"wdt:P136"--> v4
v2 --"wdt:P1476"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end