query-360a94ced9d2fe03b90928a6843fdcf5

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?item ?title ?article WHERE {
  ?item wikibase:sitelinks 1;
        ^schema:about ?article .
  ?article schema:isPartOf <https://id.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 c2(["1^^xsd:integer"]):::literal c5([https://id.wikipedia.org/]):::iri v1 --"wikibase:sitelinks"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v3