query-88d1d414da1f04e61a467647ad059af6

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 * WHERE {
  ?item wdt:P105 wd:Q7432;
        wdt:P171+ wd:Q5113 .
  ?article schema:about ?item; schema:isPartOf <https://ga.wikipedia.org/>; schema:name ?title .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?item"):::projected v3("?title"):::projected c7([https://ga.wikipedia.org/]):::iri c2(["wd:Q7432"]):::iri c4(["wd:Q5113"]):::iri v1 --"wdt:P105"--> c2 v1 --"wdt:P171"--> c4 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c7 v2 --"schema:name"--> v3