query-e237599fba292d778f7fa2ca3a38e8cc
articles de peixos i foto de la infotaula SELECT DISTINCT ?article ?imatge WHERE { ?animal (wdt:P171*) wd:Q134681. ?article schema:about ?animal; schema:isPartOf https://ca.wikipedia.org/. ?animal wdt:P18 ?imatge. }
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/>
#articles de peixos i foto de la infotaula
SELECT DISTINCT ?article ?imatge WHERE {
?animal (wdt:P171*) wd:Q134681.
?article schema:about ?animal;
schema:isPartOf <https://ca.wikipedia.org/>.
?animal wdt:P18 ?imatge.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?animal")
v2("?article"):::projected
v3("?imatge"):::projected
c5([https://ca.wikipedia.org/]):::iri
c2(["wd:Q134681"]):::iri
v1 --"wdt:P171"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
v1 --"wdt:P18"--> v3