query-9168fe283b0ccb56bd2a3da00fc8b607

rq turtle/ttl

People born in Odisha, without description in Odia SELECT ?item ?itemLabel ?en_description WHERE{ ?item wdt:P31 wd:Q5 . # humans only ?item wdt:P19 / wdt:P131* wd:Q22048. ?item schema:description ?en_description . FILTER( LANG( ?en_description ) = 'en' ) . OPTIONAL { ?item schema:description ?or_description . FILTER( LANG( ?or_description ) = 'or' ) . } . FILTER( !BOUND( ?or_description ) ) . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } }

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#>
# People born in Odisha, without description in Odia
SELECT ?item ?itemLabel ?en_description 
WHERE{
 ?item wdt:P31 wd:Q5 .                # humans only
         ?item wdt:P19 / wdt:P131* wd:Q22048. 
      ?item  schema:description ?en_description .
  FILTER( LANG( ?en_description ) = 'en' ) .
  OPTIONAL { ?item schema:description ?or_description .
    FILTER( LANG( ?or_description ) = 'or' ) .  } .
  FILTER( !BOUND( ?or_description ) ) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?en_description"):::projected v3("?item"):::projected v1("?or_description") a1((" ")) c10(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal c7(["wd:Q22048"]):::iri f0[["not bound(?or_description)"]] f0 --> v1 f1[["?en_description = 'en'"]] f1 --> v2 v3 --"wdt:P31"--> c4 v3 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c7 v3 --"schema:description"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:description".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end