query-7097ba6e30a98cafdfc164afb120d015
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?page_titleEN WHERE {
?article schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/> ; schema:name ?page_titleEN .
}
LIMIT 300
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article")
v2("?item"):::projected
v3("?page_titleEN"):::projected
c3([https://en.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v1 --"schema:name"--> v3