query-90c00b91f60fa90a4189e488ad02e33f
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 ?article
WHERE
{
?article schema:about ?item ;
schema:isPartOf <https://en.wikipedia.org/> .
?item wdt:P21 wd:Q6581097 .
?item wdt:P735 ?name .
?name wdt:P31 wd:Q11879590
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v3("?item"):::projected
v1("?itemLabel"):::projected
v4("?name")
c3([https://en.wikipedia.org/]):::iri
c10(["bd:serviceParam"]):::iri
c8(["wd:Q11879590"]):::iri
c5(["wd:Q6581097"]):::iri
c12(["en"]):::literal
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c3
v3 --"wdt:P21"--> c5
v3 --"wdt:P735"--> v4
v4 --"wdt:P31"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end