query-45d041432660ba9bfa9b8052f4423438
Articles de premiats i categories de premis (cat principal) SELECT DISTINCT ?persona ?article ?premi ?cat ?categoria WHERE { ?persona wdt:P166 ?premi. ?premi wdt:P910 ?cat. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. ?categoria schema:about ?cat. ?categoria schema:isPartOf https://ca.wikipedia.org/. }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
# Articles de premiats i categories de premis (cat principal)
SELECT DISTINCT ?persona ?article ?premi ?cat ?categoria
WHERE {
?persona wdt:P166 ?premi.
?premi wdt:P910 ?cat.
?article schema:about ?persona.
?article schema:isPartOf <https://ca.wikipedia.org/>.
?categoria schema:about ?cat.
?categoria schema:isPartOf <https://ca.wikipedia.org/>.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article"):::projected
v3("?cat"):::projected
v5("?categoria"):::projected
v1("?persona"):::projected
v2("?premi"):::projected
c5([https://ca.wikipedia.org/]):::iri
v1 --"wdt:P166"--> v2
v2 --"wdt:P910"--> v3
v4 --"schema:about"--> v1
v4 --"schema:isPartOf"--> c5
v5 --"schema:about"--> v3
v5 --"schema:isPartOf"--> c5