query-d73821109aa242474905491b649af47b
Caves with page on bulgarian but without length
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 bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemLabel ?itemDescription WHERE {
?item (wdt:P31/wdt:P279*) wd:Q35509.
{?sitelink schema:about ?item. ?sitelink schema:inLanguage "bg"}
MINUS { ?item wdt:P2043 _:b1. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "bg". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?sitelink")
a2((" "))
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q35509"]):::iri
c6(["bg"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"schema:about"--> v1
v2 --"schema:inLanguage"--> c6
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P2043"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c6
end