Solved
How to get the fields definition of an InfoTable
Is it possible to get the field definition of an InfoTable prior to knowing its DataShape?
I am currently doing it by converting my InfoTable to json and then by taking the dataShape definition:
var fields = Resources["InfoTableFunctions"].ToJSON(params); var result = fields.dataShape.fieldDefinitions;
This works fine but I'm wondering if there is a nicer way to do this, by using services like getDataShape and GetFieldDefinitions.

