query-7f50d8e0a240284da5019e2773631111
Persones amb gènere i article SELECT DISTINCT ?persona ?article ?genere WHERE { ?persona wdt:P31 wd:Q5. ?persona wdt:P21 ?genere. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
# Persones amb gènere i article
SELECT DISTINCT ?persona ?article ?genere
WHERE {
?persona wdt:P31 wd:Q5.
?persona wdt:P21 ?genere.
?article schema:about ?persona.
?article schema:isPartOf <https://ca.wikipedia.org/>.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v2("?genere"):::projected
v1("?persona"):::projected
c2(["wd:Q5"]):::iri
c6([https://ca.wikipedia.org/]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P21"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c6