query-050451ecd5a8c09254e80e0cfe750c30
Pianists born in Morocco who died in Paris SELECT ?PersonA ?PersonALabel WHERE{ ?PersonA wdt:P106 wd:Q486748; wdt:P19 / wdt:P17 wd:Q1028; wdt:P20 wd:Q90. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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#>
#Pianists born in Morocco who died in Paris
SELECT ?PersonA ?PersonALabel
WHERE{
?PersonA wdt:P106 wd:Q486748;
wdt:P19 / wdt:P17 wd:Q1028;
wdt:P20 wd:Q90.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?PersonA"):::projected
a1((" "))
c5(["wd:Q1028"]):::iri
c7(["wd:Q90"]):::iri
c9(["bd:serviceParam"]):::iri
c2(["wd:Q486748"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P106"--> c2
v1 --"wdt:P19"--> a1
a1 --"wdt:P17"--> c5
v1 --"wdt:P20"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end