query-68116f5999b8e232bbbb5152bcc95944

rq turtle/ttl

Search for missing descriptions in a target language.

Can be input for Q29032512

SELECT ?item ?itemLabel ?itemDescription WHERE { ?item wdt:P31 wd:Q3558970. # instance of human SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". } FILTER(NOT EXISTS { ?item schema:description ?itemdesc. FILTER(LANG(?itemdesc) = "fr") # with missing French description }) } order by ?itemLabel

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Search for missing descriptions in a target language.
#Can be input for Q29032512
SELECT ?item ?itemLabel ?itemDescription WHERE {
  ?item wdt:P31 wd:Q3558970.  # instance of human
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
  FILTER(NOT EXISTS {
    ?item schema:description ?itemdesc.
    FILTER(LANG(?itemdesc) = "fr") # with missing French description
  })
}
order by ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v1("?itemLabel"):::projected v2("?itemdesc") c6(["bd:serviceParam"]):::iri c8(["fr,en"]):::literal c4(["wd:Q3558970"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?itemdesc = 'fr'"]] e0f0 --> e0v1 e0v2 --"schema:description"--> e0v1 e0v2("?item"):::projected e0v1("?itemdesc"):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> v3 f0 --> c2 f1[["?itemdesc = 'fr'"]] f1 --> v2 v3 --"schema:description"--> v2 v3 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end