query-8e17d5fdc62e14a7c77f419e801036d4
Famous (not french) people born in France ).contribs • [[User talk:|talk]] ([[User:|?]] comment was added byunsignedThe preceding – Is there any query that could help me get the famous people (not french) born in France ? Thanks ! Here is a basic one:
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 ?item ?itemLabel ?nat ?natLabel ?pob ?pobLabel ?coor
{
?item wdt:P19 / wdt:P17 wd:Q142 .
MINUS { ?item wdt:P27 wd:Q142 } .
?item wdt:P27 ?nat .
?item wdt:P19 ?pob .
?pob wdt:P17 wd:Q142 . OPTIONAL { ?pob wdt:P625 ?coor }
?item wdt:P31 wd:Q5 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coor"):::projected
v1("?item"):::projected
v2("?nat"):::projected
v3("?pob"):::projected
a1((" "))
c9(["bd:serviceParam"]):::iri
c7(["wd:Q5"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal
c3(["wd:Q142"]):::iri
v1 --"wdt:P19"--> a1
a1 --"wdt:P17"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P27"--> c3
end
v1 --"wdt:P27"--> v2
v1 --"wdt:P19"--> v3
v3 --"wdt:P17"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P625".-> v4
end
v1 --"wdt:P31"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end