query-49835c72d0a9a737a55fd62c50db17d8
⚽ Overlap with other WikiProjects
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
PREFIX target: <http://www.wikidata.org/prop/direct/P6104>
SELECT ?count ?o ?oLabel
WHERE {
{
SELECT (COUNT(?s) AS ?count) ?o WHERE {
?s target: wd:Q56241615 .
?s target: ?o .
FILTER (?o != wd:Q56241615)
}
GROUP BY ?o
ORDER BY DESC(?count)
LIMIT 100
} SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da,de,es,fr,jp,nl,no,ru,sv,zh" . }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count"):::projected
v2("?o"):::projected
v3("?s")
c6(["en,da,de,es,fr,jp,nl,no,ru,sv,zh"]):::literal
c4(["bd:serviceParam"]):::iri
c1(["wd:Q56241615"]):::iri
f0[["?o != 'wd:Q56241615'"]]
f0 --> v2
v3 --http://www.wikidata.org/prop/direct/P6104--> c1
v3 --http://www.wikidata.org/prop/direct/P6104--> v2
bind2[/"count(?s)"/]
v3 --o bind2
bind2 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end