query-597e353b411b1dc4f23356469298bacc
Wikipedia featured articles in language A that do not exist in language BHere is a query for the list of featured articles on Wikipedia in Italian (language A)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?itemLabel ?sitelink WHERE {
?sitelink schema:isPartOf <https://it.wikipedia.org/>;
schema:about ?item;
wikibase:badge wd:Q17437796 . # Featured Article
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } .
} ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item")
v1("?itemLabel"):::projected
v2("?sitelink"):::projected
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2([https://it.wikipedia.org/]):::iri
c5(["wd:Q17437796"]):::iri
v2 --"schema:isPartOf"--> c2
v2 --"schema:about"--> v3
v2 --"wikibase:badge"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end