The Wikidata website gives an example of the ticker symbol
property P249
:
Boeing <ticker symbol> BA
I thought this should translate to the following sparql query:
PREFIX schema: <http://schema.org/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?ticker WHERE {
wd:Q66 wdt:P249 ?ticker.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
However, when running this in the Query Service, this yields no result.