query-1f3fd3c53629f8a5fc240a13b67a8612
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?pokemon ?pokemonLabel ?pokedex
WHERE
{
?pokemon wdt:P1112 ?pokedex ;
wdt:P972 ?catindex .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
ORDER BY ?pokemonLabel
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?catindex")
v3("?pokedex"):::projected
v2("?pokemon"):::projected
v1("?pokemonLabel"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v2 --"wdt:P1112"--> v3
v2 --"wdt:P972"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end