query-47dda3cca297b7f6e68589fca6796b49
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#>
#defaultView:Map
SELECT ?item ?itemLabel ?p ?pLabel ?coord
WHERE {
?item wdt:P119 ?p .
MINUS { ?item wdt:P1442 [] } .
?p wdt:P625 ?coord; wdt:P131* wd:Q38 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v1("?item"):::projected
v2("?p"):::projected
a1((" "))
c5(["wd:Q38"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["it,en"]):::literal
v1 --"wdt:P119"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1442"--> a1
end
v2 --"wdt:P625"--> v3
v2 --"wdt:P131"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end