query-e12c4dd45cb828062fa926e0cb942f83

rq turtle/ttl

Query article sitelink title, if present): enwiki, I can easily query sitelinks to a specific language version (e.g. Wikidata:SPARQL query service/queries#Working with sitelinksAdapting an example from

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?article
WHERE 
{
  ?article schema:about wd:Q446728.
  ?article schema:isPartOf <https://en.wikipedia.org/>.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article"):::projected c4([https://en.wikipedia.org/]):::iri c2(["wd:Q446728"]):::iri v1 --"schema:about"--> c2 v1 --"schema:isPartOf"--> c4