query-f3c37dd5a498a6245117ed74082991f4
: (Q190107)weather station Une autre possibilité est de prendre toutes les natures en sous-classes de
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 ?item ?itemLabel WHERE
{
?item wdt:P31/wdt:P279* wd:Q190107 .
?item wdt:P17 wd:Q16 .
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("?item"):::projected
a1((" "))
c5(["wd:Q16"]):::iri
c3(["wd:Q190107"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["fr"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end