query-57c3deea3a967a973b5aeca9290409f1
Diese query sucht ob ein Qid ein Artikel der Realencyclopädie ist und kein P921 hat. Du kannst auch den Gegenteil machen, nämlich suchen ob ein Artikel ein P921 hat:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?article WHERE {
?article wdt:P31 wd:Q13433827 ; wdt:P361 wd:Q1138524 .
#Remove the following line to have every articles instead
?article wdt:P921 ?something .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?something")
c4(["wd:Q1138524"]):::iri
c2(["wd:Q13433827"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P361"--> c4
v1 --"wdt:P921"--> v2