### What? Fixes the issue with querying by `id` from REST / `overrideAccess: false`. For example, this didn't work: `/api/loans?where[book.bibliography.id][equals]=67224d74257b3f2acddc75f4` ``` QueryError: The following path cannot be queried: id ``` ### Why? We support this syntax within the Local API. ### How? Now, for simplicity we sanitize everything like `relation.otherRelation.id` to `relation.otherRelation` Fixes https://github.com/payloadcms/payload/issues/9008