query-76dd1da3183c385b2109a794bd7dff84
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 ?penerbit ?penerbitLabel (AVG(?halaman) AS ?halamanRerata)
WHERE
{
?buku wdt:P123 ?penerbit;
wdt:P1104 ?halaman.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?penerbit ?penerbitLabel
ORDER BY DESC(?halamanRerata)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?buku")
v4("?halaman"):::projected
v5("?halamanRerata")
v3("?penerbit"):::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(?halaman)"/]
v4 --o bind1
bind1 --as--o v5