query-0a8550c7b332dd445c09354f81457c4a
All Nuts Data in Wikidata for one country
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#>
#-----------------------------------------------------
# All Nuts Data in Wikidata for one country
#-----------------------------------------------------
#defaultView:Table;Map
SELECT ?item ?itemLabel ?itemDescription ?nuts ?countryLabel ?coordinate
WHERE
{
?item wdt:P17 ?country. # country
FILTER(?country = wd:Q183) # country = Germany
OPTIONAL { ?item wdt:P605 ?nuts . } # nuts
OPTIONAL { ?item wdt:P625 ?coordinate. } # coordinate
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de". }
}
order by ?nuts
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coordinate"):::projected
v2("?country")
v3("?item"):::projected
v1("?nuts"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
f0[["?country = 'wd:Q183'"]]
f0 --> v2
v3 --"wdt:P17"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P605".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P625".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end