query-2b28d857117c0a7e1b9ca2697be1dece

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?item ?label_bn ?label_en ?description where {
  ?item wdt:P31 wd:Q101352.
  ?item schema:description ?description.
  filter(lang(?description) = "bn" && STRSTARTS(str(?description), "পারিবারিক নামাম")) .
  OPTIONAL {?item rdfs:label ?label_bn . FILTER(lang(?label_bn) = "bn")} .
  OPTIONAL {?item rdfs:label ?label_en . FILTER(lang(?label_en) = "en")} .
} LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?description"):::projected v4("?item"):::projected v3("?label_bn"):::projected v1("?label_en"):::projected c5(["wd:Q101352"]):::iri f0[["?description = 'bn'starts-with(str(?description),'পারিবারিক নামাম')"]] f0 --> v2 v4 --"wdt:P31"--> c5 v4 --"schema:description"--> v2 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 -."rdfs:label".-> v1 end