query-2a9a2d2c0eef5f3a73fe72b5912baa93

rq turtle/ttl

TODO

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#>
select ?item ?itemLabel ?description where {
  ?item wdt:P31 wd:Q101352; schema:description ?description.
  FILTER( STRSTARTS(?description, 'পারিবারিক নামাম')) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language '[AUTO_LANGUAGE],bn,en' }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?description"):::projected v2("?item"):::projected c3(["wd:Q101352"]):::iri c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,bn,en"]):::literal f0[["starts-with(?description,'পারিবারিক নামাম')"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"schema:description"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end