What is the Lambda signature for a graphql @resolver's UDF that both has 'pagination: true' and accepts arguments?

The user-defined args go first. So for pendingInvites you should define the UDF like:

q.Lambda(
      ['active', 'user', 'size', 'after', 'before'],
      /* ... */
)
4 Likes