query-3cc12a2eb334e959ec837dedf3cfc89c
Concat the URL with a name and not with all URL 17:50, 21 April 2024 (UTC) pagetalk / TomT0m author I think that this discussion is resolved and can be archived. If you disagree, don't hesitate to replace this template with your comment. Hi! I've created this query that works perfectly. The only thing is that I would like the URL to appear under a title "This is a link" instead of the whole URL. I am using the code CONCAT but it doesn't work. Thanks! Leire
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
#Fimmakers
SELECT DISTINCT ?filmmaker ?filmmakerLabel ?lugar ?coord ?birthdate ?year (CONCAT("[[", ?TabakaleraURL, "|This is a link]]") AS ?TabakaleraURL)
WHERE
{
?filmmaker wdt:P31 wd:Q5 .
?filmmaker wdt:P106 wd:Q2526255 . #zinemagilea
?filmmaker wdt:P19 ?lugar.
?filmmaker wdt:P1344 wd:Q9081343.
?lugar wdt:P625 ?coord.
?filmmaker wdt:P10069 ?tabakalera.
OPTIONAL{?filmmaker wdt:P569 ?birthdate .} # P569 : Date de naissance
BIND(year(?birthdate) as ?year)
FILTER(?year > 1800)
wd:P10069 wdt:P1630 ?formatterurl .
BIND(IRI(REPLACE(?tabakalera, '^(.+)$', ?formatterurl)) AS ?TabakaleraURL).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}