query-a300780a90478596c79ecdfd8c54e1c7
Query for all Q objects that have an English Wikipedia associated with themHello guys, sorry for being such a noob, but can someone help me with the query for (or simply point me to a result set/list/file if there is one already) for all Q entities on Wikidata that are associated with an english wikipedia page? Thank you in advance, and sorry again for the noob question. There are more than 7 million items with a link to English Wikipedia. Itemize all these items would be a bit too much but here you have the first million:
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT ?item WHERE {
?item ^schema:about/schema:isPartOf <https://en.wikipedia.org/>
} limit 1000000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c3([https://en.wikipedia.org/]):::iri
a1 --"schema:about"--> v1
a1 --"schema:isPartOf"--> c3