Merge transformation not working using uql Infinity Data Source parse-json | jsonata "$map(value,function($v){{ 'inviteDateTime': $v.$substring(inviteDateTime, 0, 10), 'id': $v.id, 'duration': $v.duration, 'successfulCall': $v.successfulCall}})"
when I am using Json and adding columns the merge transformation is working but when I am using UQL query merge not working when 1 of the query returns empty but this is not the same case with json
I want to use uql because I want to convert my date with jsonata. but why the merge not working when I am using UQL Query
I am using this same jsonata query in every request and I didn’t tried $merge
I am getting only 1000 records per request if I want to get more I need to call the API using $skip=1000 query that’s why calling 5 requests so when the data is above 1000 the user can see it
hey I can’t use Apache and I know the issue why it is not merging because of the jsonata when the value is empty jsonata query creates a column name result while the simple uql query is working and merging but showing less rows per day so I want to use substring I tried if method in jsonata also but didn’t work
can we use substring in uql I tried like this
don’t want to use jsonata because when array is empty jsonata creates a column name result with nothing in it and I have a problem while merging. and when using only this