query-3c35b446b6b02cf203a4268759a680e8

rq turtle/ttl

¿Cuál es la cantidad de cosas cuyos autores han sido peruanos y tienen artículo en Wikipedia en español por peruano? ¿Cuál es la cantidad de cosas cuyos autores han sido peruanos y tienen artículo en Wikipedia en español por peruano? ¿Cuál es la cantidad de cosas cuyos autores han sido peruanos y tienen artículo en Wikipedia en español por peruano? Hoeveel dingen zijn er die Peruaans zijn en een artikel hebben op Wikipedia in het Spaans?

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
  ?autor
  ?autorLabel
  (COUNT(*) AS ?count)
{
   {
  SELECT DISTINCT ?autor ?obra {
     {
  SELECT DISTINCT ?autor {
    {?autor wdt:P27 wd:Q419}
    UNION
    {?autor wdt:P19/wdt:P131* wd:Q419}
    UNION
    {?autor wdt:P1532 wd:Q419}
  }
}
    ?obra wdt:P50 ?autor.

    [] schema:about ?obra;
       schema:isPartOf <https://es.wikipedia.org/>.
  }
}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?autor ?autorLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?autor"):::projected v4("?count") v3("?obra") a2((" ")) a1((" ")) c13(["en"]):::literal c2(["wd:Q419"]):::iri c11(["bd:serviceParam"]):::iri c9([https://es.wikipedia.org/]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P1532"--> c2 end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c2 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P27"--> c2 end union0r <== or ==> union0l end v3 --"wdt:P50"--> v2 a2 --"schema:about"--> v3 a2 --"schema:isPartOf"--> c9 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end bind1[/"count(*)"/] bind1 --as--o v4