query-b359700d44cb54b431d04c13cfd874ea
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?P856 ?P856Label ?item ?itemLabel where
{
?P856 wdt:P856 [].
?article schema:about ?P856 ;
schema:isPartOf <https://fr.wikipedia.org/> .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?P856"):::projected
v2("?article")
a1((" "))
c4([https://fr.wikipedia.org/]):::iri
v1 --"wdt:P856"--> a1
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c4