IDs - Graphql

@dmai Is there a way to use a non-UID for after?

Suppose I want to get a page of the 5 least recently created users after a certain time.
In SQL, I’d do this:

SELECT *
  FROM users
  WHERE users.created_at > "2021-03-04 14:15:00"
  ORDER BY users.created_at ASC
  LIMIT 5;

Is there a way to do this with DQL?

1 Like