query-a65a4a73ac03fb4bbb7095adf1d292e5

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel {
  BIND( STRLANG( "Bangladeshi poet", "en" ) AS ?desc ) .
  ?item schema:description ?desc .
  MINUS {
    ?item schema:description ?description .
    FILTER( LANG( ?description ) = "bn" ) .
  } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "bn,en" } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?desc") v3("?description") v2("?item"):::projected c4(["bd:serviceParam"]):::iri c6(["bn,en"]):::literal bind0[/"STRLANG('Bangladeshi poet','en')"/] bind0 --as--o v1 v2 --"schema:description"--> v1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; f2[["?description = 'bn'"]] f2 --> v3 v2 --"schema:description"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end