query-a1daa13fbfab63a23ce17c13d45755d9
All links for an artist with language and article title
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?lang ?link ?article WHERE {
?link schema:about wd:Q762; schema:inLanguage ?lang; schema:name ?article
FILTER(CONTAINS(str(?link), ".wikipedia.org/")) # only Wikipedia links
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v2("?lang"):::projected
v1("?link"):::projected
c3(["wd:Q762"]):::iri
f0[["contains(str(?link),'.wikipedia.org/')"]]
f0 --> v1
v1 --"schema:about"--> c3
v1 --"schema:inLanguage"--> v2
v1 --"schema:name"--> v3