Is there any way to exclude in the query when the list is filtered? Something like: allow fetching when the key is not inside the key list.
List<Key<User>> userKeys = getUserKeys(); ofy().load().type(User.class).filter("__key__ ?????", userKeys).list();
source share