Apply Filter.attributes on mx.data.get with microflow as parameter

1
Hi everyone, From javascript, I have a retrieve by microflow like this: mx.data.get({ microflow: mfName, guid: myId, filter: {attributes: ["Name"]}, callback: func}) However, in the callback, the retrieved objects still have all attributes. Do you know if I do anything wrong or it's just not possible to use filter in case of retrieving objects by microflow?
asked
1 answers
1

Retrieving an object by microflow will always give you the full object. Filtering the attributes is only supported for objects retrieved by id or xpath.

answered