query-21219bed8c2074c6a60e01cde5b4002e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT distinct ?item
WHERE
{
?item wdt:P718 []. # The property of interest
?article schema:about ?item ; # has a sitelink
schema:isPartOf <https://en.wikipedia.org/> . # sitelink is to EN wikipedia
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v1("?item"):::projected
a1((" "))
c4([https://en.wikipedia.org/]):::iri
v1 --"wdt:P718"--> a1
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c4