query-5ff1ece194c74d0e17219d533ac87098

rq turtle/ttl

Swjate křiže A modlerske stołpy (CHR)

Use at

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#>
PREFIX schema: <http://schema.org/>
#-------------------------------------------------------------------------------
# Kombiniert Wegkreuze und Bildstöcke in Crostwitz
#-------------------------------------------------------------------------------
#defaultView:Map;Table;
SELECT DISTINCT ?item ?itemLabel ?image ?coordinates 
WHERE {
  ?item wdt:P131 wd:Q93223. # liegt in Crostwitz
  #?item wdt:P31 wd:Q79007.
    VALUES ?instance_of { 
      wd:Q2309609      # Wegkreuz
      wd:Q3395121      # Bildstock  
    } 
    ?item wdt:P31 ?instance_of.

  optional{ ?item  wdt:P2789    ?other  . }   # physisch verbundenes verbundenes objekt
  FILTER(!BOUND(?other)) 

  OPTIONAL { ?item wdt:P18 ?image. }
  OPTIONAL { ?item wdt:P625 ?coordinates. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "hsb,de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?coordinates"):::projected v4("?image"):::projected v3("?instance_of") v2("?item"):::projected v1("?other") c8(["bd:serviceParam"]):::iri c2(["wd:Q93223"]):::iri c10(["hsb,de"]):::literal f0[["not bound(?other)"]] f0 --> v1 v2 --"wdt:P131"--> c2 bind1[/VALUES ?instance_of/] bind1-->v3 bind10(["wd:Q2309609"]) bind10 --> bind1 bind11(["wd:Q3395121"]) bind11 --> bind1 v2 --"wdt:P31"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P2789".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end