query-30fff833e5626b5415d696b1befb153b

rq turtle/ttl

¿Cuál es la cantidad de obras literarias por personas con nacionalidad peruana? ¿Cuál es la cantidad de obras literarias por personas con nacionalidad peruana? ¿Cuál es la cantidad de obras literarias por personas con nacionalidad peruana? Hoeveel literaire werken zijn van mensen met de Peruaanse nationaliteit?

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#>
SELECT
  ?item
  ?itemLabel
  (COUNT(*) AS ?count)
{
   {
  SELECT DISTINCT ?item ?literaryWork {
    ?item
      wdt:P31 wd:Q5;
      wdt:P27 wd:Q419.
    ?literaryWork
      wdt:P31 wd:Q7725634;
      wdt:P50 ?item.
  }
}
  SERVICE wikibase:label {bd:serviceParam wikibase:language "es"}.
}
GROUP BY ?item ?itemLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v2("?item"):::projected v3("?literaryWork") c8(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c5(["wd:Q7725634"]):::iri c4(["wd:Q419"]):::iri c10(["es"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P27"--> c4 v3 --"wdt:P31"--> c5 v3 --"wdt:P50"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind1[/"count(*)"/] bind1 --as--o v4