Solved
Forum Discussion
bojanvelevski
5 years agoValued Contributor
Hey @Gayathry,
Check it’s length with the .length method:
$.group.length > 0
Case 1 will return false, Case 2 will return true.
Regards,
Bojan
Thanks Bojan for your quick reply.
Actually as per my requirement inside ‘group’ if getting a empty list ‘{}’, it should return false . But group.lengh is returning true even if list is empty(ie {}).
eg:
if JSON is like below it should return false.
“group”: [
{}
]- bojanvelevski5 years agoValued Contributor
@Gayathry, go with the following expression:
$group.filter(x=>x.hasPath('ID')).length > 0
- darshthakkar3 years agoValued Contributor
@bojanvelevski: Thank you for sharing this.
Can we check if the incoming JSON is empty or not using the same?Thanks.