query-1dcf06d9e2dcae4410e2ea9ee3167b87
Nonoumasy
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item ?item_as_text
{
VALUES ?item { wd:Q1 }
BIND (STRAFTER(STR(?item), "http://www.wikidata.org/entity/") AS ?item_as_text)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?item_as_text"):::projected
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q1"])
bind00 --> bind0
bind1[/"substring-after(str(?item),'http://www.wikidata.org/entity/')"/]
v1 --o bind1
bind1 --as--o v2