query-4609219acc627eb628e2352b91f4966f

rq turtle/ttl

autoři s největším počtem literárních děl na Wikidatech SELECT ?spisovatel ?spisovatelLabel (COUNT (DISTINCT ?dilo) AS ?pocetdel) WHERE { ?spisovatel wdt:P106 wd:Q36180 . #spisovatel ?spisovatel wdt:P27 wd:Q213 . #české občanství ?dilo wdt:P50 ?spisovatel . #zjistit díla spisovatele ?dilo wdt:P31/wdt:P279* wd:Q7725634 . #pouze literární díla SERVICE wikibase:label { bd:serviceParam wikibase:language "cs" . } } GROUP BY ?spisovatel ?spisovatelLabel ORDER BY DESC (?pocetdel)

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#>
#autoři s největším počtem literárních děl na Wikidatech
SELECT ?spisovatel ?spisovatelLabel (COUNT (DISTINCT ?dilo) AS ?pocetdel) WHERE {
  ?spisovatel wdt:P106 wd:Q36180 . #spisovatel
  ?spisovatel wdt:P27 wd:Q213 . #české občanství
  ?dilo wdt:P50 ?spisovatel . #zjistit díla spisovatele
  ?dilo wdt:P31/wdt:P279* wd:Q7725634 . #pouze literární díla
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "cs" .
  }
} GROUP BY ?spisovatel ?spisovatelLabel
ORDER BY DESC (?pocetdel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?dilo"):::projected v4("?pocetdel") v2("?spisovatel"):::projected a1((" ")) c12(["cs"]):::literal c4(["wd:Q213"]):::iri c10(["bd:serviceParam"]):::iri c8(["wd:Q7725634"]):::iri c2(["wd:Q36180"]):::iri v2 --"wdt:P106"--> c2 v2 --"wdt:P27"--> c4 v3 --"wdt:P50"--> v2 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind1[/"count(?dilo)"/] v3 --o bind1 bind1 --as--o v4