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