query-564524ba8813fdc4fb35c3b42ebd29c5
Wikidata Beispielwie versprochen:
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 ?_s ?_sLabel ?_sDescription WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?_s wdt:P17 wd:Q40. # in Österreich (nur Optimierung)
?_s wdt:P31 []. # hat ein definiertes ist-ein
?_s wdt:P625 []. # hat Koordinaten
?_s wdt:P131 wd:Q671466 # liegt in Ternberg
MINUS
{
?_s wdt:P18 [] # ohne Bild
}
MINUS
{
?_s wdt:P373 [] # ohne Commonscat
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?_s"):::projected
a1((" "))
a2((" "))
a3((" "))
a4((" "))
c2(["bd:serviceParam"]):::iri
c6(["wd:Q40"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c10(["wd:Q671466"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P17"--> c6
v1 --"wdt:P31"--> a1
v1 --"wdt:P625"--> a2
v1 --"wdt:P131"--> c10
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P18"--> a3
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P373"--> a4
end