Closed
Description
It would be great to support the Relay connection args out of the box for users.
first
/last
would simply require the user to select what field to order on.
before
/after
is a little more tricky, we can't simply do a comparison on ID since the order might be on something that doesn't align with the ID.
We might need to do something like [field] > (SELECT [field] FROM [table] WHERE id = [after] LIMIT 1)
which might kill performance slightly.
/cc @brad-decker