query-dcf91c063902a5b61c2ba717bb1bb6cb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?editore ?editoreLabel (AVG(?pagine) AS ?mediaPagine)
WHERE
{
?libro wdt:P123 ?editore;
wdt:P1104 ?pagine.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?editore ?editoreLabel
ORDER BY DESC(?mediaPagine)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?editore"):::projected
v2("?libro")
v5("?mediaPagine")
v4("?pagine"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;"]):::literal
v2 --"wdt:P123"--> v3
v2 --"wdt:P1104"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"average(?pagine)"/]
v4 --o bind1
bind1 --as--o v5