I noticed a difference in search results between authenticated and unauthenticated requests to GET /players with filter[search].
When I search for a player by exact name (e.g. "Dave") without an auth token, I get precise results — only players whose current name matches the query.
When I make the same request with a Bearer token, the response includes a lot of unrelated players. It seems like authenticated search also matches against the player's alias/name history, which makes it much harder to find the right player.
Is this the expected behavior? Is there a way to limit authenticated search to current names only, similar to how unauthenticated search works? Something like a filter[search][exact] parameter or a flag to exclude alias history from search?