query-762a90123b339abfaa994fd2557e8ba9
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?article ?title
WHERE
{
?article schema:about wd:Q446728.
?article schema:isPartOf <https://en.wikipedia.org/>.
?article schema:name ?title.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?title"):::projected
c4([https://en.wikipedia.org/]):::iri
c2(["wd:Q446728"]):::iri
v1 --"schema:about"--> c2
v1 --"schema:isPartOf"--> c4
v1 --"schema:name"--> v2