Get a Particular Infotable Field with a Service
Hi Team,
I have the below service, calling QueryImplementingThingswithData that returns to me an Infotable with several fields,
However, I only want my service to return a particular field from this infotable, please, how to do it?
// result: INFOTABLE dataShape: "RootEntityList"
var retorno = ThingTemplates["MyTemplate"].QueryImplementingThingsWithData({
maxItems: undefined /* NUMBER */,
nameMask: undefined /* STRING */,
query: myquery /* QUERY */,
tags: undefined /* TAGS */
});
//this query will return an infotable with many fields, how do I return only 1 of these fields?
var result = //I just need 1 field from the infotable above

