query-d5c628bc5fb64f8780daecf2b2d71e67
TODO
Use at
- https://query.wikidata.org/sparql
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 'পারিবারিক নামাম'@bn .
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("?item"):::projected
c4([sপারিবারিক নামাম^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c2(["wd:Q101352"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,bn,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"schema:description"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end