query-b359a239a461a7b23ba19dd18d697453
) instead? Further, when there is no sitelink for the requested language version, the query returns no result: Old World vulture (i.e. title. Is it possible to obtain the article https://en.wikipedia.org/wiki/Old_World_vulturewhich returns the sitelink
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?article
WHERE
{
?article schema:about wd:Q446728.
?article schema:isPartOf <https://es.wikipedia.org/>.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
c2(["wd:Q446728"]):::iri
c4([https://es.wikipedia.org/]):::iri
v1 --"schema:about"--> c2
v1 --"schema:isPartOf"--> c4