query-5110ce165b6b20e11ab2aa72f4ec0639
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:P244 []. # 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:P244"--> a1
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c4