query-347c9e6ca68a62cb62b848278e0c7da3
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?description {
?item ^schema:about/schema:isPartOf/^wdt:P856 wd:Q427715 . # (১)
?item schema:description ?description .
FILTER( LANG( ?description ) = 'bn' && REGEX( STR( ?description ), 'একটি' ) ) .
} LIMIT 100 # (২)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?description"):::projected
v2("?item"):::projected
a1((" "))
a2((" "))
c5(["wd:Q427715"]):::iri
f0[["?description = 'bn'regex(str(?description),'একটি')"]]
f0 --> v1
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> a2
c5 --"wdt:P856"--> a2
v2 --"schema:description"--> v1