query-521939e7905a6ccf1b57685a38cf57d7
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 ?iteme ?itemeLabel
WHERE {
?iteme wdt:P509 wd:Q468455;
wdt:P21 wd:Q6581072.
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("?iteme"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q468455"]):::iri
c4(["wd:Q6581072"]):::iri
c8(["fr"]):::literal
v1 --"wdt:P509"--> c2
v1 --"wdt:P21"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end