query-ba637f9823382e3ca199f59502324208

rq turtle/ttl

which gives you 288,000 ruwiki sitelinks per 500,000 items with a uksitelinks. You need to extrapolate this to 1,194,917:

Use at

PREFIX schema: <http://schema.org/>
SELECT (COUNT(*) as ?count) 
{
    ?uk schema:isPartOf <https://uk.wikipedia.org/> ; schema:about ?item .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?count") v2("?item") v1("?uk") c2([https://uk.wikipedia.org/]):::iri v1 --"schema:isPartOf"--> c2 v1 --"schema:about"--> v2 bind1[/"count(*)"/] bind1 --as--o v3