query-1b6131180f021e31e5f9a9be2fc4383b
Propertiestranslator (P655)
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 DISTINCT ?translator ?translatorLabel (COUNT(DISTINCT ?item) AS ?numTranslations)
WHERE {
?item wdt:P655 ?translator.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,ru,fr". }
}
GROUP BY ?translator ?translatorLabel
ORDER BY DESC(?numTranslations)
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v4("?numTranslations")
v3("?translator"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en,ru,fr"]):::literal
v2 --"wdt:P655"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v4