query-624df5c5a5b330bef1ee676abd644493
Bengali Wikipedia articles with no Wikidata statement 12:59, 27 March 2018 (UTC)) talk (BodhisattwaI would like to get a list of Bengali Wikipedia articles with no Wikidata statement. Thanks.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?sl ?article
WHERE
{
?item wikibase:statements 0 .
?article schema:about ?item ; schema:isPartOf <https://bn.wikipedia.org/> .
?item wikibase:sitelinks ?sl .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,bn". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
v3("?sl"):::projected
c2(["0^^xsd:integer"]):::literal
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en,bn"]):::literal
c5([https://bn.wikipedia.org/]):::iri
v1 --"wikibase:statements"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
v1 --"wikibase:sitelinks"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end