query-40af456c93b86190f42e6f339c6cec73
TODO
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#>
#defaultView:Table;
#-------------------------------------------------------------------------------------
# actor who appears in films, with the most number of sitelinks (as a proxy for fame)
#-------------------------------------------------------------------------------------
SELECT ?item ?itemLabel ?date_of_birth ?linkcount
WHERE {
#?item wdt:P31 wd:Q5. # is human
#?item wdt:P27 wd:Q183. # Nation USA
?item wdt:P569 ?date_of_birth. # has birthday
?item wdt:P106 wd:Q10800557. # occupatition: actor who appears in films
?item wikibase:sitelinks ?linkcount .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?linkcount ?item ?itemLabel ?date_of_birth
ORDER BY DESC(?linkcount)
limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?date_of_birth"):::projected
v2("?item"):::projected
v1("?linkcount"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q10800557"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P569"--> v3
v2 --"wdt:P106"--> c3
v2 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end