query-b8247ec846f804eaf6257f2c2c5a4d0b
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?iso ?article ?sitelink
WHERE
{
?item wdt:P220 ?iso.
?article schema:about ?item ;
schema:isPartOf <https://ja.wikipedia.org/> ;
schema:name ?sitelink .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v2("?iso"):::projected
v1("?item"):::projected
v4("?sitelink"):::projected
c7(["bd:serviceParam"]):::iri
c4([https://ja.wikipedia.org/]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P220"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c4
v3 --"schema:name"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end