query-5c33fb3eef7008df41e09817e424d93a
title:Numero di articoli pubblicati nel bollettino dell'Archiginnasio per autore SELECT ?autoreLabel (COUNT(?autore) AS ?count) WHERE { ?item wdt:P1433 wd:Q27715489; wdt:P50 ?autore; wdt:P577 ?anno . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?autoreLabel 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#>
#title:Numero di articoli pubblicati nel bollettino dell'Archiginnasio per autore
SELECT ?autoreLabel (COUNT(?autore) AS ?count)
WHERE
{
?item wdt:P1433 wd:Q27715489; wdt:P50 ?autore; wdt:P577 ?anno .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?autoreLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?anno")
v3("?autore"):::projected
v5("?count")
v2("?item")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q27715489"]):::iri
v2 --"wdt:P1433"--> c2
v2 --"wdt:P50"--> v3
v2 --"wdt:P577"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?autore)"/]
v3 --o bind1
bind1 --as--o v5