query-397086808fca5ce8b9d83cba438768b0

rq turtle/ttl

Número de obras de dramaturgos españoles publicadas entre 1920 y 1936

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#>
#defaultView:BarChart
SELECT ?autor ?autorLabel (count(?obra) as ?numobras)  
WHERE {

{
  SELECT DISTINCT ?obra WHERE {
    ?obra wdt:P7937 wd:Q25379 .
    ?obra wdt:P577 ?fecha .
    FILTER(year(?fecha)>=1920 && year(?fecha)<=1936)
  }
} 
  ?obra wdt:P50 ?autor .
  ?autor wdt:P106 wd:Q214917;
         wdt:P27 wd:Q29 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
} group by ?autor ?autorLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?autor"):::projected v1("?fecha") v4("?numobras") v2("?obra"):::projected c4(["wd:Q25379"]):::iri c14(["es"]):::literal c10(["wd:Q29"]):::iri c12(["bd:serviceParam"]):::iri c8(["wd:Q214917"]):::iri f0[["year-from-dateTime(?fecha) >= '1920^^xsd:integer'year-from-dateTime(?fecha) <= '1936^^xsd:integer'"]] f0 --> v1 v2 --"wdt:P7937"--> c4 v2 --"wdt:P577"--> v1 v2 --"wdt:P50"--> v3 v3 --"wdt:P106"--> c8 v3 --"wdt:P27"--> c10 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end bind2[/"count(?obra)"/] v2 --o bind2 bind2 --as--o v4