Hello @Jason Bosco, @Kishore Nallan, we have a problem with the data structure we store on typesense server. The objects stored on the typesense server have some indexed fields and also have one non-indexed complex json object. Also we use search a lot. The API reference says that it is possible to have a control over the list of fields returned with a search response using the “include_fields” parameter. And it works fine unless you want to filter out some nested fields. In other words, if we have objects of this format stored on the TS side: {“indexedfield””value1”,”complexfield”{“nested1”{“nested2 1”1,”nested2_2”:2}}}
is it possible to define “include_fields” the way so i get back this:
{“indexedfield””value1”,”complexfield”{“nested1”{“nested2 1”1}}}
so complexfield.nested1.nested2_2 is filtered out? (edited)