query-c9515a3429ff179cb19496847d90223b
Falsche Query-ErgebnisseDiese Query gibt mir eine zweistellige Anzahl Ergebnisse, obwohl lediglich 2 oder 3 davon zutreffend sind. Der Rest ist falsch und sollte nicht aufgeführt werden. Wo liegt das Problem?
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE {
?item wdt:P2962 wd:Q752119 .
MINUS {?item p:P2962 [ ps:P2962 wd:Q752119; pq:P580 [] ] } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a2((" "))
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q752119"]):::iri
v1 --"p:direct/P2962"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a1 --"p:statement/P2962"--> c2
a1 --"p:qualifier/P580"--> a2
v1 --"p:P2962"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end