query-848be3d2f4a273ea75ef9c14e04c38f4
Other achievementsMPs who have competed in the Olympics
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#>
select distinct ?person ?personLabel ?thingLabel WHERE
{
?person wdt:P1344 ?thing . # person did a thing
{ ?thing wdt:P31 wd:Q159821 } UNION { ?thing wdt:P31 wd:Q82414 } # thing was the olympics
?person wdt:P39 [ wdt:P279* wd:Q16707842 ] . # person was an MP
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?person"):::projected
v2("?thing")
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q159821"]):::iri
c6(["wd:Q16707842"]):::iri
c11(["en"]):::literal
c4(["wd:Q82414"]):::iri
v1 --"wdt:P1344"--> v2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P31"--> c4
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P31"--> c3
end
union0r <== or ==> union0l
end
a1 --"wdt:P279"--> c6
v1 --"wdt:P39"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end