query-3c373dd2873ca6140561e91d4e7b6dd3
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?sitelink ?article
WHERE
{
?item wdt:P31 wd:Q35120 .
?sitelink ^schema:name ?article .
?article schema:about ?item ;
schema:isPartOf <https://es.wikipedia.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "es" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
v3("?sitelink"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q35120"]):::iri
c6([https://es.wikipedia.org/]):::iri
c10(["es"]):::literal
v1 --"wdt:P31"--> c2
v2 --"schema:name"--> v3
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end