query-44f9f0aef443dced09dceef1524c4ae1
TODO
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
{ ?item (wdt:P279/(wdt:P279*)) wd:Q25570959. }
MINUS { ?item (wdt:P279/(wdt:P279*)) wd:Q10990. }
MINUS { ?item wdt:P1402 _:b8. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a3((" "))
a1((" "))
a2((" "))
c3(["wd:Q10990"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c2(["wd:Q25570959"]):::iri
v1 --"wdt:P279"--> a1
a1 --"wdt:P279"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P279"--> a2
a2 --"wdt:P279"--> c3
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1402"--> a3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end