I'm working with the Refinitiv Data Platform Library for TypeScript and trying to implement a symbol search using Search.definition. In the documentation it provides the following example:
const definition = Search.Definition({ query: "IBM Bonds", select: "ISIN,RIC,IssueDate,Currency,FaceIssuedTotal,CouponRate,MaturityDate",});
My question is, how does one find out the possible values for SELECT? And for that matter, the FILTER and ORDERBY?
Doing a SearchAll only seems to return a few values, compared to what seems possible with the SELECT. Any help would be appreciated.
Thank you.