query-1d0d7e557e91175f039d3af2810a761d

rq turtle/ttl

I don't think it's good design to have invisible data linked to an item. How can the sitelink be edited or deleted when it doesn't show up in the user interface? How is it even possible to add sitelinks to a project we don't yet support? What should we do with sitelinks to Incubator? 08:38, 6 February 2021 (UTC)) talk (Shinnin--Either it's a bug or unannounced new feature. I think some keep asking for that, but Wikibase hasn't really found a good way to support multiple sitelinks to the same wiki.11:31, 6 February 2021 (UTC) JuraIt might be worth a try. It still needs cleaning up though. --- 11:15, 6 February 2021 (UTC)❫ ✉ ❪ChristianKlCouldn't an abuse filter do this? 09:25, 6 February 2021 (UTC) Jura don't seem to support "incubatorwiki" --- Special:SetSiteLink. api and Wikidata:Contact the development teamFor them to be deleted, you need to ask at 09:12, 6 February 2021 (UTC) JuraI would guess it's a bug and in that case, they can just be deleted. ---

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?pagename ?article ?langwiki (lang(?pagename) as ?langpagename)
WHERE
{
    ?article schema:about ?item .
    ?article schema:isPartOf <https://wikisource.org/> ; schema:name ?pagename ; schema:inLanguage ?langwiki
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article"):::projected v2("?item"):::projected v5("?langpagename") v4("?langwiki"):::projected v3("?pagename"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3([https://wikisource.org/]):::iri v1 --"schema:about"--> v2 v1 --"schema:isPartOf"--> c3 v1 --"schema:name"--> v3 v1 --"schema:inLanguage"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind0[/"?pagename"/] v3 --o bind0 bind0 --as--o v5