query-dde9315327341bb88ab71fea33300bc2
TODO
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/>
SELECT * WHERE {
?article schema:about ?item .
?article wikibase:badge wd:Q17437796 .
FILTER (SUBSTR(str(?article), 11, 15) = ".wikipedia.org/") .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?item"):::projected
c6(["wd:Q17437796"]):::iri
f0[["substring(str(?article),'11^^xsd:integer','15^^xsd:integer') = '.wikipedia.org/'"]]
f0 --> v1
v1 --"schema:about"--> v2
v1 --"wikibase:badge"--> c6