I am trying to obtain the wikidata entity_id containing a given literal, for example "crypto". I'm using:
SELECT ?item WHERE {
?o rdfs:label ?ol
FILTER (lang(?ol) = 'en')
FILTER(contains(str(?ol),'crypto' ))
}
Of course, the wrong approach :-/ Any help, more than welcome. Thx in advance.