query-e507e7e096830add80c31f1568506cdf

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?editora ?editoraLabel (AVG(?páginas) AS ?médiaPáginas)
WHERE
{
  ?livro wdt:P123 ?editora;
        wdt:P1104 ?páginas.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?editora ?editoraLabel
HAVING(COUNT(?livro) > 1)
ORDER BY DESC(?médiaPáginas)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?_anon_d00291b7e9a143df8ec0be8c8ebd714c2369") v3("?editora"):::projected v2("?livro") v6("?médiaPáginas") v4("?páginas"):::projected a1((" ")) c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;"]):::literal f0[[" > '1^^xsd:integer'"]] f0 --> a1 v2 --"wdt:P123"--> v3 v2 --"wdt:P1104"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind3[/"count(?livro)"/] v2 --o bind3 bind3 --as--o v5 bind4[/"average(?páginas)"/] v4 --o bind4 bind4 --as--o v6