query-82d985b3dec89d17569010274a951053
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item ?link WHERE {
?item wdt:P973 ?url .
BIND(CONCAT('<a href="', str(?url), '">link</a>') AS ?link) .
} LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v3("?link"):::projected
v2("?url")
v1 --"wdt:P973"--> v2
bind0[/"concat('<a href="',str(?url),'">link</a>')"/]
v2 --o bind0
bind0 --as--o v3