query-d644a5b7736e68c1896d60602f8f49ca

rq turtle/ttl

: (P646)Freebase ID Items with no other statements except the I think (2.) is not possible, this one is similar: items with English but no French label

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label_en WHERE {
  ?item rdfs:label ?label_en filter(lang(?label_en) = "en") .
  MINUS { ?item rdfs:label ?label_fr filter(lang(?label_fr) = "fr") . }
}
LIMIT 100

Query found at

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