With server driven transaction chaining, one can filter child data source records using parent record queried by a first query in a queue and criteria binding
<operationBinding operationType="fetch"> <criteria fieldName="someId" value="$responseData.first.id"/> </operationBinding> Is it possible to accomplish the same without specifying operation binding, but instead setting criteria on the client, e.g., by setting "$responseData.first.id" expression on the client?
<operationBinding operationType="fetch"> <criteria fieldName="someId" value="$responseData.first.id"/> </operationBinding> Is it possible to accomplish the same without specifying operation binding, but instead setting criteria on the client, e.g., by setting "$responseData.first.id" expression on the client?
Comment