query-f2224fa8fa79524348bd19ae53de63e5
Olea
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 ?item ?itemLabel ?INE1 ?INE2 ?locatedLabel
WHERE
{
?item wdt:P772 ?INE1 .
?item wdt:P772 ?INE2 .
FILTER (?INE1 < ?INE2)
?item wdt:P131 ?located .
?item wdt:P131* wd:Q3908 . # Galicia only
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?INE1"):::projected
v2("?INE2"):::projected
v3("?item"):::projected
v4("?located")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q3908"]):::iri
f0[["?INE1 < ?INE2"]]
f0 --> v1
f0 --> v2
v3 --"wdt:P772"--> v1
v3 --"wdt:P772"--> v2
v3 --"wdt:P131"--> v4
v3 --"wdt:P131"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end