query-df052b9a168221cb72ad3b9b4e57e573
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 DISTINCT ?item ?itemLabel (COUNT(?item) AS ?count) {
?item wdt:P4543 [];
wdt:P176 [];
?property [].
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel
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"):::projected
v3("?property")
a1((" "))
a2((" "))
a3((" "))
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v2 --"wdt:P4543"--> a1
v2 --"wdt:P176"--> a2
v2 -->v3--> a3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v4