query-084ebd8ff4f0ed49c36338f233e9ac4b

rq turtle/ttl

10 principales temas de artículos científicos publicados por peruanos 10 principales temas de artículos científicos publicados por peruanos 10 principales temas de artículos científicos publicados por peruanos 10 belangrijkste onderwerpen van wetenschappelijke artikelen gepubliceerd door Peruanen

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
  ?temaLabel
  (COUNT(?temaLabel) AS ?conteo)
{
  {?peruano wdt:P27 wd:Q419 }
  UNION
  {?peruano wdt:P19/wdt:P131* wd:Q419 }

  ?artículo wdt:P50 ?peruano;
            wdt:P31 wd:Q13442814;
            wdt:P921 ?tema.

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?temaLabel
ORDER BY DESC(?conteo)
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?artículo") v6("?conteo") v2("?peruano") v4("?tema") v5("?temaLabel"):::projected a1((" ")) c7(["wd:Q13442814"]):::iri c10(["bd:serviceParam"]):::iri c12(["#91;AUTO_LANGUAGE#93;"]):::literal c2(["wd:Q419"]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c2 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P27"--> c2 end union0r <== or ==> union0l end v3 --"wdt:P50"--> v2 v3 --"wdt:P31"--> c7 v3 --"wdt:P921"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind1[/"count(?temaLabel)"/] v5 --o bind1 bind1 --as--o v6