Can internal query be recursive?
It doesn't seem like it but just double checking
2 Replies
The handler can be recursive.
calling the query itself recursively involves overhead for argument validation and making it into a transaction, so I wouldn't recommend it even if it were possible. Making the handler recursive or calling a recursive function from the query is usually better
thanks!