query-f35735acae574c654b7bfa9b43e809e6
Tidligere jernbanestationer i DK med commonshenvisning, men intet billede (P18)
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 ?Danmark ?DanmarkLabel ?DanmarkDescription ?article ?billede WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "da". }
?Danmark wdt:P17 wd:Q35;
wdt:P31 wd:Q4663385.
?article schema:about ?Danmark;
schema:isPartOf <https://commons.wikimedia.org/>.
MINUS { ?Danmark wdt:P18 ?billede. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?Danmark"):::projected
v2("?article"):::projected
v3("?billede"):::projected
c2(["bd:serviceParam"]):::iri
c8(["wd:Q4663385"]):::iri
c11([https://commons.wikimedia.org/]):::iri
c6(["wd:Q35"]):::iri
c4(["da"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P17"--> c6
v1 --"wdt:P31"--> c8
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c11
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P18"--> v3
end