It seems there is currently no straightforward way for testing whether a list is empty. Something like list.isEmpty() would be welcome.
1 Like
Hello Philippe! There are actually a couple of ways, you can use list.isBlank() or list.isNotBlank().
You could also use something like list.count()=0.
1 Like