query-625f0564a0eddf79c0b93ef3bf5f59ec
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 DISTINCT ?item ?itemLabel ?itemDescription ?article WHERE
{
?item wdt:P27 wd:Q298.
?item wdt:P31 wd:Q5.
?article schema:about ?item.
?article schema:isPartOf <https://en.wikipedia.org/>.
?item wikibase:sitelinks "1"^^xsd:integer.
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
} limit 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
c13(["es,en"]):::literal
c9(["1^^xsd:integer"]):::literal
c7([https://en.wikipedia.org/]):::iri
c11(["bd:serviceParam"]):::iri
c4(["wd:Q5"]):::iri
c2(["wd:Q298"]):::iri
v1 --"wdt:P27"--> c2
v1 --"wdt:P31"--> c4
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c7
v1 --"wikibase:sitelinks"--> c9
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end