query-9ac922a4a15abe2dbb4e8897b25307b2

rq turtle/ttl

Dones amb article SELECT DISTINCT ?persona ?personaLabel ?article WHERE { ?persona wdt:P31 wd:Q5. ?persona wdt:P21 wd:Q6581072. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,oc,en,es,fr". } }

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#>
# Dones amb article
SELECT DISTINCT ?persona ?personaLabel ?article 
WHERE {
  ?persona wdt:P31 wd:Q5.
  ?persona wdt:P21 wd:Q6581072.
  ?article schema:about ?persona.
  ?article schema:isPartOf <https://ca.wikipedia.org/>.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,oc,en,es,fr". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?persona"):::projected c11(["ca,oc,en,es,fr"]):::literal c9(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c4(["wd:Q6581072"]):::iri c7([https://ca.wikipedia.org/]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> c4 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end