query-a27000bbb33e20d71ffa02c2d27732ec
Riviste italiane relative alla scienza dell'informazione e delle biblioteche in ordine di '''numero decrescente di autori''' SELECT DISTINCT ?rivista ?rivistaLabel (COUNT(?autore) 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 . ?articolo wdt:P50 ?autore . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". } }
GROUP BY ?rivista ?rivistaLabel ORDER BY DESC(?count)
Use at
- https://query.wikidata.org/sparql
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 autori'''
SELECT DISTINCT ?rivista ?rivistaLabel (COUNT(?autore) 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 .
?articolo wdt:P50 ?autore .
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")
v5("?autore"):::projected
v6("?count")
v2("?rivista"):::projected
v4("?v")
c3(["wd:Q38"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal
c6(["wd:Q13442814"]):::iri
c10(["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
v4 --"wdt:P50"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end
bind2[/"count(?autore)"/]
v5 --o bind2
bind2 --as--o v6