query-fd47881947163ffff4450429499cf64b
title:Winners and nominees (people) present on most Wikimedia projects SELECT DISTINCT ?item ?itemLabel ?links WHERE { VALUES ?award{wd:Q160082 wd:Q2052291} ?item wdt:P166|wdt:P1411 ?award. ?item wdt:P31 wd:Q5. ?item wikibase:sitelinks ?links FILTER(?links > 1) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY DESC(?links)
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#>
#title:Winners and nominees (people) present on most Wikimedia projects
SELECT DISTINCT ?item ?itemLabel ?links WHERE {
VALUES ?award{wd:Q160082 wd:Q2052291}
?item wdt:P166|wdt:P1411 ?award.
?item wdt:P31 wd:Q5.
?item wikibase:sitelinks ?links FILTER(?links > 1)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY DESC(?links)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?award")
v3("?item"):::projected
v1("?links"):::projected
c8(["bd:serviceParam"]):::iri
c5(["wd:Q5"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?links > '1^^xsd:integer'"]]
f0 --> v1
bind1[/VALUES ?award/]
bind1-->v2
bind10(["wd:Q160082"])
bind10 --> bind1
bind11(["wd:Q2052291"])
bind11 --> bind1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P1411"--> v2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P166"--> v2
end
union0r <== or ==> union0l
end
v3 --"wdt:P31"--> c5
v3 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end