query-c8876652a2da196e2a76a8c5cae4c313

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?book ?page WHERE {
    ?book wdt:P31 wd:Q571 .
    ?page schema:about ?book .
    ?page schema:isPartOf <https://en.wikisource.org/> .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?book"):::projected v2("?page"):::projected c5([https://en.wikisource.org/]):::iri c2(["wd:Q571"]):::iri v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5