query-9280de02bb07517d81cdd932112a3774

rq turtle/ttl

TODO

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 ?category_titleBN
WHERE 
{
  ?item wdt:P31 wd:Q4167836. 
  ?bn_category schema:about ?item;
                       schema:isPartOf <https://bn.wikipedia.org/>;
                       schema:name ?category_titleBN. 
  ?item wikibase:sitelinks "1"^^xsd:integer
  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; v2("?bn_category") v3("?category_titleBN"):::projected v1("?item"):::projected c8(["1^^xsd:integer"]):::literal c10(["bd:serviceParam"]):::iri c12(["#91;AUTO_LANGUAGE#93;,bn,en"]):::literal c5([https://bn.wikipedia.org/]):::iri c2(["wd:Q4167836"]):::iri v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v3 v1 --"wikibase:sitelinks"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end