query-ec796d75d769135cb970dc78e7115bb5

rq turtle/ttl

Objekte in Torgau ohne Bild

Use at

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#>
#-------------------------------------------------------------------------------
# Objekte in Torgau ohne Bild (nur Bilder auf Commons sind erlaubt)
#-------------------------------------------------------------------------------
#defaultView:Map{"layer": ?named_after, "hide": ["?coordinates", "?instance_ofLabel"]};Table
#Artikellink
# Commons-Link
SELECT DISTINCT ?item ?itemLabel ?article ?coordinates ?image WHERE {
  ?item wdt:P131 wd:Q12062.
  OPTIONAL {
    ?article schema:about ?item;
      schema:isPartOf <https://de.wikipedia.org/>.
  }
  OPTIONAL {
    ?commons schema:about ?item;
      schema:isPartOf <https://commons.wikimedia.org/>.
  }
  OPTIONAL { ?item wdt:P18 ?image. }
  FILTER(!(BOUND(?image)))
  OPTIONAL { ?item wdt:P625 ?coordinates. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v4("?commons") v5("?coordinates"):::projected v1("?image"):::projected v2("?item"):::projected c5([https://de.wikipedia.org/]):::iri c12(["de"]):::literal c10(["bd:serviceParam"]):::iri c2(["wd:Q12062"]):::iri c6([https://commons.wikimedia.org/]):::iri f0[["not bound(?image)"]] f0 --> v1 v2 --"wdt:P131"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v2 v3 --"schema:isPartOf"--> c5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v2 v4 --"schema:isPartOf"--> c6 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v1 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end