query-49ae880b32d280e936b428df51b06568
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#>
#"Stated in" query by Daniel Mietchen
##defaultView:BubbleChart
#Sources used as references on Wikidata
SELECT ?source ?sourceLabel (COUNT(?source) AS ?count)
WHERE
{
?item wdt:P248 ?source .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
GROUP BY ?source ?sourceLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v2("?item")
v3("?source"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v2 --"wdt:P248"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(?source)"/]
v3 --o bind1
bind1 --as--o v4