query-d8bdbac084ee12ece84c8ce71f9d858f

rq turtle/ttl

استخدام المسار المنسق لبناء الروابط في سباركل Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Použití formátovacího url ke konstrukci odkazů v jazyce SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Utiliser un formateur d’URL pour construire des liens en SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Usare il formattatore di url per costruire link in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Formatter url gebruiken om links te bouwen in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL Using formatter url to construct links in SPARQL 在SPARQL中使用格式化网址构造链接

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
# Get 10 paintings that have a link to RKDimages (P350)
# Use the formatter URL (P1630) to construct the links to RKDimages
#defaultView:ImageGrid
SELECT ?item ?image ?rkdurl WHERE {
  wd:P350 wdt:P1630 ?formatterurl .
  ?item wdt:P31 wd:Q3305213 .
  ?item wdt:P18 ?image .
  ?item wdt:P350 ?rkdid .
  BIND(IRI(REPLACE(?rkdid, '^(.+)$', ?formatterurl)) AS ?rkdurl).
  } LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?formatterurl") v3("?image"):::projected v2("?item"):::projected v4("?rkdid") v5("?rkdurl"):::projected c4(["wd:Q3305213"]):::iri c1(["wd:P350"]):::iri c1 --"wdt:P1630"--> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P18"--> v3 v2 --"wdt:P350"--> v4 bind0[/"replace(?rkdid,'^(.+)$',?formatterurl)"/] v4 --o bind0 v1 --o bind0 bind0 --as--o v5