query-50356c22b3d915510f80445010eb417f
TODO
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 schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT * {
{
SELECT DISTINCT * {
?item wdt:P31 wd:Q23442;
wdt:P206/wdt:P361* wd:Q545;
wdt:P2046 ?area.
FILTER(?area > 10)
?en_sitelink schema:about ?item ;
schema:isPartOf <https://en.wikipedia.org/> .
MINUS {?he_sitelink schema:about ?item ;
schema:isPartOf <https://he.wikipedia.org/> .}
}
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
?item rdfs:label ?label . ?item schema:description ?description
}
}
ORDER BY DESC(?area)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?area"):::projected
v6("?description"):::projected
v3("?en_sitelink"):::projected
v4("?he_sitelink"):::projected
v2("?item"):::projected
v5("?label"):::projected
a1((" "))
c3(["wd:Q23442"]):::iri
c11([https://he.wikipedia.org/]):::iri
c6(["wd:Q545"]):::iri
c10([https://en.wikipedia.org/]):::iri
c13(["bd:serviceParam"]):::iri
c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?area > '10^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P206"--> a1
a1 --"wdt:P361"--> c6
v2 --"wdt:P2046"--> v1
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c10
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c11
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c13 --"wikibase:language"--> c15
v2 --"rdfs:label"--> v5
v2 --"schema:description"--> v6
end