query-f94e3cab93975bf57dbe763ab329ec53

rq turtle/ttl

Flood Flag Request for adding Ukrainian descriptions) to the articles that I found with the SPARQL query (Q11173)chemical compound , search results for "chemical compound"Hi. I'm already use Quickstatements to add Ukrainian descriptions "хімічна сполука" (see

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT DISTINCT ?p ?penLabel ?penDescr WHERE  {
  wd:Q11173 ^ps:P31/^p:P31 ?p .
  OPTIONAL {  ?p rdfs:label ?penLabel.          FILTER((LANG(?penLabel)) = "en")  }
  OPTIONAL {  ?p schema:description ?penDescr.  FILTER((LANG(?penDescr)) = "en")  }
  OPTIONAL {  ?p schema:description ?pukDescr.  FILTER((LANG(?pukDescr)) = "uk")  }
  FILTER((!BOUND(?pukDescr)) && (STR(?penDescr) = "chemical compound")).
}
LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?p"):::projected v2("?penDescr"):::projected v3("?penLabel"):::projected v1("?pukDescr") a1((" ")) c5(["wd:Q11173"]):::iri f0[["not bound(?pukDescr)str(?penDescr) = 'chemical compound'"]] f0 --> v1 f0 --> v2 a1 --"p:statement/P31"--> c5 v4 --"p:P31"--> a1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:description".-> v2 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:description".-> v1 end