User:TweetsFactsAndQueries/Queries/members of the Ku Klux Klan whose English description doesn’t mention that

Originally posted on Twitter and on Mastodon.

SELECT ?item ?itemLabel ?itemDescription WHERE {
  ?item wdt:P31 wd:Q5;
        wdt:P463 wd:Q47131;
        rdfs:label ?itemLabel;
        schema:description ?itemDescription.
  FILTER(LANG(?itemLabel) = "en")
  FILTER(LANG(?itemDescription) = "en")
  FILTER(!CONTAINS(?itemDescription, "Klux"))
  FILTER(!CONTAINS(?itemDescription, "KKK"))
}
Try it!