query-7eb3ea67af46596ae1714e47841dd130

rq turtle/ttl

danske kirker uden billede

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#>
SELECT ?kirke ?kirkeLabel ?billede ?geografiske_koordinater WHERE {
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   ?kirke wdt:P31 wd:Q16970.
   ?kirke wdt:P17 wd:Q35.
   MINUS { ?kirke wdt:P18 ?billede. }
   OPTIONAL { ?kirke wdt:P625 ?geografiske_koordinater. }
 }
 LIMIT 10000
#defaultView:Map

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?billede"):::projected v3("?geografiske_koordinater"):::projected v1("?kirke"):::projected c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q16970"]):::iri c8(["wd:Q35"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P31"--> c6 v1 --"wdt:P17"--> c8 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P18"--> v2 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v3 end