query-27c98747db7a45b234d1d96c0684ad20

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?belarussian WHERE {
  {
    ?item wdt:P5412 ?belarussian .
    OPTIONAL {
      ?item rdfs:label ?label .
      FILTER (LANG(?label) = 'en' )
    }      
  }
  FILTER (!BOUND(?label))
}
LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?belarussian"):::projected v2("?item"):::projected v1("?label") f0[["not bound(?label)"]] f0 --> v1 v2 --"wdt:P5412"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."rdfs:label".-> v1 end