query-f672d80914a946f190af441b15dceeac
Focus list articles not marked as reviews SELECT DISTINCT ?paper WHERE { ?paper wdt:P5008 wd:Q55439927; wdt:P577 ?date. MINUS {?paper wdt:P31 wd:Q7318358} } ORDER BY ASC(?date)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Focus list articles not marked as reviews
SELECT DISTINCT ?paper
WHERE {
?paper wdt:P5008 wd:Q55439927;
wdt:P577 ?date.
MINUS {?paper wdt:P31 wd:Q7318358}
}
ORDER BY ASC(?date)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date")
v2("?paper"):::projected
c2(["wd:Q55439927"]):::iri
c5(["wd:Q7318358"]):::iri
v2 --"wdt:P5008"--> c2
v2 --"wdt:P577"--> v1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P31"--> c5
end