query-c0d5e2a49ec436bbdf4cb71bf7d89c50
TODO
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 ?chefLabel ?proprLabel where {
?chef ?prop wd:Q2817847 .
?chef wdt:P31/wdt:P279* wd:Q5 .
?propr wikibase:directClaim ?prop .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?chef")
v2("?prop")
v3("?propr")
a1((" "))
c7(["bd:serviceParam"]):::iri
c4(["wd:Q5"]):::iri
c1(["wd:Q2817847"]):::iri
c9(["fr"]):::literal
v1 -->v2--> c1
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
v3 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end