query-a9b33e4f6858feff78fcdfb44f4134f6
Select all stadiums which have capacity of more than 45000 seats but don't have an article in Armenian Wikipedia. select ?stadium ?capacity where { ?stadium wdt:P1083 ?capacity. filter(?capacity > 45000) ?stadium wdt:P31 wd:Q483110 minus {?article schema:about ?stadium ; schema:isPartOf https://hy.wikipedia.org/ .} }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
#Select all stadiums which have capacity of more than 45000 seats but don't have an article in Armenian Wikipedia.
select ?stadium ?capacity where {
?stadium wdt:P1083 ?capacity.
filter(?capacity > 45000)
?stadium wdt:P31 wd:Q483110
minus {?article schema:about ?stadium ;
schema:isPartOf <https://hy.wikipedia.org/> .}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article")
v1("?capacity"):::projected
v2("?stadium"):::projected
c4(["wd:Q483110"]):::iri
c7([https://hy.wikipedia.org/]):::iri
f0[["?capacity > '45000^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P1083"--> v1
v2 --"wdt:P31"--> c4
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c7
end