Evaluates arguments sequentially and returns the first argument that is not null and not an empty string "".
null
""
coalesce(...values: any) -> any
Returns the documented result for the function signature.
args = { limit = coalesce(ctx.request.query.limit, 20) offset = coalesce(ctx.request.query.offset, 0) }