query-c7e928dd8c2ac1585781497288acf646
SPARQL - ermittelt alle Items in der Verwaltungseinheit Q1741 ohne Objekttyp https://de.wikipedia.org/wiki/Benutzer:Holger1959/BW-2Es wird, falls vorhanden, die zugehörige Wikipediaseite und das Bild angezeigt, etwa analog zu
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?article ?bild
WHERE {
?item wdt:P131 wd:Q1741 . # liegt in der Verwaltungseinheit Q1741=Wien
OPTIONAL { ?item wdt:P18 ?bild } . # hat das Bild ?bild
OPTIONAL { ?article schema:about ?item . ?article schema:inLanguage 'de' } . # deutschsprachige Wikipediaseite
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". } # ermittelt itemLabel
FILTER NOT EXISTS { ?item wdt:P31 ?dummy } # der Objekttyp existiert nicht
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article"):::projected
v3("?bild"):::projected
v2("?dummy")
v1("?item"):::projected
c7(["de"]):::literal
c11(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c9(["bd:serviceParam"]):::iri
c3(["wd:Q1741"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P31"--> e0v2
e0v2("?dummy"):::projected
e0v1("?item"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wdt:P31"--> v2
v1 --"wdt:P131"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v1
v4 --"schema:inLanguage"--> c7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end