I need to run some queries that the Foxx Repository object doesn't seem capable of handling (Maybe I'm just missing something). I'd like to use AQL, but I don't know how to call it from Foxx.
Example:
timestamps Collection:
{ user_id, time_stamp }
SQL Query (What I'd like to emulate):
SELECT * FROM timestamps WHERE user_id = 1024 AND time_stamp < 123456789
I can do:
timestamps.byExample( {user_id:1024} )
But this doesn't let me do a range as well.