query-4d4ccadca60ef1d6e37a9e6f3788a171

rq turtle/ttl

Find descriptions to fix errors.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription
WHERE
{
  VALUES ?desc {"text1"@en "text2"@en "text3"@en "text4"@en
}.
  ?item schema:description ?desc.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,bn". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?desc") v2("?item"):::projected c3(["bd:serviceParam"]):::iri c5(["en,bn"]):::literal bind0[/VALUES ?desc/] bind0-->v1 bind00([stext1^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind00 --> bind0 bind01([stext2^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind01 --> bind0 bind02([stext3^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind02 --> bind0 bind03([stext4^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind03 --> bind0 v2 --"schema:description"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end