query-25a1aebca3836689068cac1ecfcb966d
People who have competed at the Winter Paralympic Games
SELECT DISTINCT ?itemLabel ?gamesLabel ?nationalityLabel ?occupationLabel ?birthLabel WHERE { ?item wdt:P1344 ?games . ?games wdt:P31 wd:Q3317976 . ?item wdt:P27 ?nationality . ?item wdt:P106 ?occupation . ?item wdt:P19 ?birth .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 10000
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#>
#People who have competed at the Winter Paralympic Games
SELECT DISTINCT ?itemLabel ?gamesLabel ?nationalityLabel ?occupationLabel ?birthLabel
WHERE
{
?item wdt:P1344 ?games .
?games wdt:P31 wd:Q3317976 .
?item wdt:P27 ?nationality .
?item wdt:P106 ?occupation .
?item wdt:P19 ?birth .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?birth")
v2("?games")
v1("?item")
v3("?nationality")
v4("?occupation")
c3(["wd:Q3317976"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
v1 --"wdt:P1344"--> v2
v2 --"wdt:P31"--> c3
v1 --"wdt:P27"--> v3
v1 --"wdt:P106"--> v4
v1 --"wdt:P19"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end