query-0ea588d70a3ed7c84abe69640154a623
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel WHERE {
?item ?prop ?statement.
?statement pq:P1310 ?propDisputer.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
MINUS {
?item wdt:P7378 ?itemDisputer.
}
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v5("?itemDisputer")
v2("?prop")
v4("?propDisputer")
v3("?statement")
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v1 -->v2--> v3
v3 --"pq:P1310"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P7378"--> v5
end