query-ad0416be2d4c0d9073fe845d23226050
Propertiessubject named as (P1810)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?count
WHERE {
{
SELECT ?item (COUNT(?name) AS ?count)
WHERE {
?item ?p [
pq:P1810 ?name
].
}
GROUP BY ?item
ORDER BY DESC(?count)
LIMIT 100
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count"):::projected
v3("?item"):::projected
v2("?name")
v4("?p")
a1((" "))
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
a1 --"pq:P1810"--> v2
v3 -->v4--> a1
bind1[/"count(?name)"/]
v2 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end