query-03b8d2a1fc0db0cd3a667547c1cbd658

rq turtle/ttl

Persones del Racó d'Ademús (amb article) SELECT DISTINCT ?persona ?personaLabel ?article WHERE { ?persona wdt:P19 ?lloc. ?lloc wdt:P131* wd:Q1432274. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Persones del Racó d'Ademús (amb article)
SELECT DISTINCT ?persona ?personaLabel ?article
WHERE {
  ?persona wdt:P19 ?lloc.
  ?lloc wdt:P131* wd:Q1432274.
    ?article schema:about ?persona.
    ?article schema:isPartOf <https://ca.wikipedia.org/>.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . } 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v2("?lloc") v1("?persona"):::projected c8(["bd:serviceParam"]):::iri c3(["wd:Q1432274"]):::iri c6([https://ca.wikipedia.org/]):::iri c10(["#91;AUTO_LANGUAGE#93;,ca,en,es"]):::literal v1 --"wdt:P19"--> v2 v2 --"wdt:P131"--> c3 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end