query-4be87d34e1a3b3fc5cc9729b64cb6459
check if all KML files on enwiki are linked from an item with P3096 SELECT ?kml ?kmlLabel ?article WHERE { ?kml wdt:P31 wd:Q26267864 . ?article schema:about ?kml ; schema:isPartOf https://en.wikipedia.org/ . MINUS { [] wdt:P3096 ?kml } MINUS { ?kml ^wdt:P3096 [] } SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" } }
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#>
#check if all KML files on enwiki are linked from an item with P3096
SELECT ?kml ?kmlLabel ?article
WHERE
{
?kml wdt:P31 wd:Q26267864 .
?article schema:about ?kml
; schema:isPartOf <https://en.wikipedia.org/> .
MINUS { [] wdt:P3096 ?kml }
MINUS { ?kml ^wdt:P3096 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?kml"):::projected
a1((" "))
a2((" "))
c5([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q26267864"]):::iri
c10(["en,en"]):::literal
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a1 --"wdt:P3096"--> v1
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
a2 --"wdt:P3096"--> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end