query-149329001c67303a490134ca2f20ea1e

rq turtle/ttl

Items with an English label but not French

Use at

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#>
SELECT ?person ?label (LANG(?label) AS ?lang)
WHERE
{
  ?person wdt:P31 wd:Q5;
          rdfs:label ?label.
  FILTER(LANG(?label) IN ("en")). # tweak to taste
  OPTIONAL {?person rdfs:label ?label1  filter(lang(?label1) = "fr")}
  FILTER(!BOUND(?label1))
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?label"):::projected v1("?label1") v4("?lang") v3("?person"):::projected c4(["wd:Q5"]):::iri f0[["not bound(?label1)"]] f0 --> v1 f1[["?label = 'en'"]] f1 --> v2 v3 --"wdt:P31"--> c4 v3 --"rdfs:label"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."rdfs:label".-> v1 end bind2[/"?label"/] v2 --o bind2 bind2 --as--o v4