GraphQL: Querying user workspaces for a different user shows workspaces of logged-in user
## Problem Given the following ~GraphQL query: ```graphql query { user(username:"gitlab.mschoenlaub") { id workspaces { nodes { name user { id } actualState } } } } ``` Logged in as @splattael I see a list of workspaces from logged-in user: ![Screenshot_from_2025-05-09_12-11-58](/uploads/52ef45c2767e925227e1b3bdc148c83b/Screenshot_from_2025-05-09_12-11-58.png) ## Proposed solution Error out if showing workspaces for different users is not possible.
issue