query-849661cdb0a012bd282f42c102ce8d28

rq turtle/ttl

Akbarali

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?file ?caption_en
WHERE
{
  ?file rdfs:label ?caption_en .
  FILTER (LANG(?caption_en) = "en")
  MINUS
  {
    ?file rdfs:label ?caption_ar .
    FILTER (LANG(?caption_ar) = "ar")
  }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?caption_ar") v1("?caption_en"):::projected v2("?file"):::projected f0[["?caption_en = 'en'"]] f0 --> v1 v2 --"rdfs:label"--> v1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; f2[["?caption_ar = 'ar'"]] f2 --> v3 v2 --"rdfs:label"--> v3 end