a!isNullOrEmpty(a!fromJson("{}")) gives me result as false but my requirement is to check if a!fromJson is empty then it should return true. How can we acheive this?
Discussion posts and replies are publicly visible
You can try this:
a!isNullOrEmpty(a!keys(a!fromJson("{}")))
Thanks Stefan Helzle That worked for me