query-7de716da29146c2309b68041d1e64e99

rq turtle/ttl

categories de persones amb temes associats SELECT DISTINCT ?cat ?categoria ?associat WHERE { ?cat wdt:P31 wd:Q4167836. ?cat wdt:P4224 wd:Q5. ?categoria schema:about ?cat. ?cat wdt:P971 ?associat. ?categoria schema:isPartOf https://ca.wikipedia.org/. }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
# categories de persones amb temes associats
SELECT DISTINCT ?cat ?categoria ?associat WHERE {
  ?cat wdt:P31 wd:Q4167836.
  ?cat wdt:P4224 wd:Q5.
  ?categoria schema:about ?cat.
  ?cat wdt:P971 ?associat.
  ?categoria schema:isPartOf <https://ca.wikipedia.org/>.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?associat"):::projected v1("?cat"):::projected v2("?categoria"):::projected c4(["wd:Q5"]):::iri c2(["wd:Q4167836"]):::iri c8([https://ca.wikipedia.org/]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P4224"--> c4 v2 --"schema:about"--> v1 v1 --"wdt:P971"--> v3 v2 --"schema:isPartOf"--> c8