Hi all,
I'm trying to search for some information using the refintiv.data.content.search module
I know there a re a lot of available fields that you can search for or use to filter. However is there a way of searching for all available fields ? Like this :
response = rd.content.search.Definition(
view=rd.content.search.Views.SEARCH_ALL,
filter = "ISIN eq 'DE0008467416'",
select = "*",
top = 1000).get_data()
response.data.df
Something similar to the " * " synthax in SQL to get all available fields.
Thank you !