query-5de6704c0a2c6d586139058fc3f4ace6

rq turtle/ttl

Riviste italiane relative alla scienza dell'informazione e delle biblioteche in ordine di numero decrescente di articoli SELECT DISTINCT ?rivista ?rivistaLabel (COUNT(?articolo) AS ?count) # ?articoloLabel ?rivista ?rivistaLabel WHERE { ?rivista wdt:P31 ?v . VALUES ?v { wd:Q5633421 wd:Q41298 } ?rivista wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 . ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". } }

GROUP BY ?rivista ?rivistaLabel ORDER BY DESC(?count)

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#>
#Riviste italiane relative alla scienza dell'informazione e delle biblioteche in ordine di numero decrescente di articoli
SELECT DISTINCT ?rivista ?rivistaLabel (COUNT(?articolo) AS ?count) # ?articoloLabel ?rivista ?rivistaLabel
WHERE {
  ?rivista wdt:P31 ?v . VALUES ?v { wd:Q5633421 wd:Q41298 }
  ?rivista wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 .
  ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
}

GROUP BY ?rivista ?rivistaLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?articolo"):::projected v5("?count") v2("?rivista"):::projected v4("?v") c3(["wd:Q38"]):::iri c11(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal c6(["wd:Q13442814"]):::iri c9(["bd:serviceParam"]):::iri c5(["wd:Q13420675"]):::iri v2 --"wdt:P31"--> v4 bind0[/VALUES ?v/] bind0-->v4 bind00(["wd:Q5633421"]) bind00 --> bind0 bind01(["wd:Q41298"]) bind01 --> bind0 v2 --"wdt:P495"--> c3 v2 --"wdt:P921"--> c5 v4 --"wdt:P31"--> c6 v4 --"wdt:P1433"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end bind2[/"count(?articolo)"/] v4 --o bind2 bind2 --as--o v5