When trying to querying by id when the id is empty, the resulting query is `HGETALL PREFIX` instead of `HGETALL ID`. e.g., if the prefix is `users`, then I try to find by an empty id, `$objectRepository->find('');`, the resulting query is: `HGETALL users`.
When trying to querying by id when the id is empty, the resulting query is
HGETALL PREFIXinstead ofHGETALL ID.e.g., if the prefix is
users, then I try to find by an empty id,$objectRepository->find('');, the resulting query is:HGETALL users.