query-23c5f56a43146e47517e188beebb42ae
Items WD à Claix SELECT ?item ?itemLabel ?natureLabel ?coord ?image WHERE { ?item wdt:P131 wd:Q818965; wdt:P31 ?nature.
OPTIONAL{ ?item wdt:P625 ?coord .} OPTIONAL {?item wdt:P18 ?image. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } } ORDER BY ?itemLabel
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#>
#Items WD à Claix
SELECT ?item ?itemLabel ?natureLabel ?coord ?image WHERE {
?item wdt:P131 wd:Q818965; wdt:P31 ?nature.
OPTIONAL{ ?item wdt:P625 ?coord .}
OPTIONAL {?item wdt:P18 ?image. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
} ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coord"):::projected
v5("?image"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?nature")
c7(["bd:serviceParam"]):::iri
c2(["wd:Q818965"]):::iri
c9(["fr"]):::literal
v2 --"wdt:P131"--> c2
v2 --"wdt:P31"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end