query-a7616dfb9aa7330463c33128963a9746
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?qnum ?item ?itemId
WHERE
{
?item wdt:P31 wd:Q5 .
BIND(STRAFTER(str($item), 'entity/') AS ?qnum) .
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?qnum"):::projected
c2(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
bind0[/"substring-after(str(?item),'entity/')"/]
v1 --o bind0
bind0 --as--o v2