I am using RequestFactory to fetch data from the server and have came across a situation that I can't find an answer to:
On the client I have an EntityProxyId for a proxy that I want to fetch. Normally, I'd just do a "find" and off it goes to the server. Then, my Locator's "find" gets called, but now this EntityProxyId is actually the ID that I can use to grab it from the database.
But, in this particular case, I'm interested in finding a particular revision of that entity. So, I'd like to include a date or timestamp in that "find" call (at this point, i'd be able to query the db to grab the correct revision of said entity). I can't quite figure out how to do this... Is there a way that I can create a new service call that will still do that magic translation of the EntityProxyID into the actual database Id? That way, I can still include that extra timestamp.
Thanks!
--Rob