query-a1af4dc3105fd2161584598b54bcd096

rq turtle/ttl


Objekte mit "Dresden" im Label ohne Dresden als Attribut

----------------------------------------------------------

SELECT ?item ?itemLabel ?itemDescription ?commons ?image ?coordinates WHERE { ?item wdt:P17 wd:Q183. #?item wdt:P373 ?commons MINUS { ?item wdt:P131 :b1. } # liegt in Verwaltungseinheit ... MINUS { ?item wdt:P159 :b2. } # Hauptverwaltung MINUS { ?item wdt:P276 _:b3. } # Ort ... MINUS { ?item wdt:P138 wd:Q1731. } # benannt nach Dresden MINUS { ?item wdt:P1269 wd:Q1731. } # Aspekt von Dresden MINUS { ?item wdt:P1001 wd:Q1731. } # gehört zum Zuständigkeitsbereich von Dresden

SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". } #FILTER(REGEX(STR(?commons), "Dresden")) # Filter für Name ?item rdfs:label ?label_de. # Label abspeichern filter (lang(?label_de) = "de"). # Label nur auf Deutsch filtern FILTER(REGEX(STR(?label_de), "Dresden"))

optional {?item wdt:P31 ?instanceof }
Filter (?instanceof != wd:Q13406463). # keine Wikimedia-Liste OPTIONAL { ?item wdt:P18 ?image. } OPTIONAL { ?item wdt:P625 ?coordinates. } } Limit 100

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#----------------------------------------------------------
# Objekte mit "Dresden" im Label ohne Dresden als Attribut
#----------------------------------------------------------
SELECT ?item ?itemLabel ?itemDescription ?commons ?image ?coordinates
WHERE {
  ?item wdt:P17 wd:Q183.
  #?item wdt:P373 ?commons
  MINUS { ?item wdt:P131 _:b1. }         # liegt in Verwaltungseinheit ...
  MINUS { ?item wdt:P159 _:b2. }         # Hauptverwaltung
  MINUS { ?item wdt:P276 _:b3. }         # Ort ...
  MINUS { ?item wdt:P138  wd:Q1731. }    # benannt nach Dresden
  MINUS { ?item wdt:P1269 wd:Q1731. }    # Aspekt von Dresden
  MINUS { ?item wdt:P1001 wd:Q1731. }    # gehört zum Zuständigkeitsbereich von Dresden

  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
  #FILTER(REGEX(STR(?commons), "Dresden"))               # Filter für Name
  ?item rdfs:label ?label_de.                                  # Label abspeichern
  filter (lang(?label_de) = "de").                             # Label nur auf Deutsch filtern
  FILTER(REGEX(STR(?label_de), "Dresden"))    

  optional {?item wdt:P31 ?instanceof  }                
  Filter (?instanceof != wd:Q13406463).                 # keine Wikimedia-Liste
  OPTIONAL { ?item wdt:P18 ?image. }
  OPTIONAL { ?item wdt:P625 ?coordinates. }
}
Limit 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?coordinates"):::projected v4("?image"):::projected v1("?instanceof") v3("?item"):::projected v2("?label_de") a1((" ")) a2((" ")) a3((" ")) c14(["bd:serviceParam"]):::iri c5(["wd:Q183"]):::iri c10(["wd:Q1731"]):::iri c16(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal f0[["?instanceof != 'wd:Q13406463'"]] f0 --> v1 f1[["regex(str(?label_de),'Dresden')"]] f1 --> v2 f2[["?label_de = 'de'"]] f2 --> v2 v3 --"wdt:P17"--> c5 subgraph minus3["MINUS"] style minus3 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P131"--> a1 end subgraph minus4["MINUS"] style minus4 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P159"--> a2 end subgraph minus5["MINUS"] style minus5 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P276"--> a3 end subgraph minus6["MINUS"] style minus6 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P138"--> c10 end subgraph minus7["MINUS"] style minus7 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P1269"--> c10 end subgraph minus8["MINUS"] style minus8 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P1001"--> c10 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end v3 --"rdfs:label"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P31".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P18".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P625".-> v5 end