query-cad1bf811ab299acaaf61432a9777efe

rq turtle/ttl

Caves with label on bulgarian but without length

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?LabelBG ?DescriptionBG WHERE {
  ?item wdt:P31 wd:Q35509.

  ?item rdfs:label ?LabelBG FILTER(LANG(?LabelBG) = "bg").
  MINUS { ?item wdt:P2043 _:b1. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY ?LabelBG

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?LabelBG"):::projected v2("?item"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q35509"]):::iri c9(["#91;AUTO_LANGUAGE#93;"]):::literal f0[["?LabelBG = 'bg'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"rdfs:label"--> v1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P2043"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end