You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
407 B

SELECT ?item ?itemLabel ?OSM_key ?formatter_URL WHERE {
{ ?item wdt:P1282 ?OSM_key. }
FILTER(STRSTARTS(?OSM_key, 'Key:')) .
FILTER(?OSM_key NOT IN ('Key:image', 'Key:url', 'Key:website', 'Key:wikidata', 'Key:wikimedia_commons')) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
{
{ ?item wdt:P1630 ?formatter_URL. }
UNION
{ ?item wdt:P3303 ?formatter_URL. }
}
}