query-15112e4e3f176ec4976fcdff99917cd3
Àrbitres de futbol SELECT ?item ?itemLabel (COUNT(?props) AS ?count) WHERE { ?item wdt:P106 wd:Q859528. ?item ?props ?link. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?item ?itemLabel ORDER BY DESC(?count)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Àrbitres de futbol
SELECT ?item ?itemLabel (COUNT(?props) AS ?count) WHERE {
?item wdt:P106 wd:Q859528.
?item ?props ?link.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_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;
v5("?count")
v2("?item"):::projected
v4("?link")
v3("?props"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q859528"]):::iri
v2 --"wdt:P106"--> c2
v2 -->v3--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"count(?props)"/]
v3 --o bind1
bind1 --as--o v5