query-2d612d9289529622baac3539cfaf67cb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
select ?item where {
?article schema:about ?item ;
schema:isPartOf <https://en.wikisource.org/> .
filter not exists {?article wikibase:badge wd:Q20748093.}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article")
v2("?item"):::projected
c2(["wd:Q20748093"]):::iri
c5([https://en.wikisource.org/]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wikibase:badge"--> e0c2
e0v1("?article"):::projected
e0c2(["wd:Q20748093"]):::iri
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> c2
v1 --"wikibase:badge"--> c2
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c5